You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While /etc/login.defs defines the default values for UID_[MIN|MAX] and SYS_UID_[MIN|MAX] the data type holding these values supports larger UID values and, in fact, larger UID values are used.
The change is not required but would add support for GoogleOTP for UID values larger than 65535 if they were, in fact, in use.
The following lines of plugin_googleotp.py 411 plugin...
...limit googleotp to user accounts with UID's below the old maximum value (an unsigned 16-bit integer).
Newer kernels use an unsigned 32-bit integer for the UID and GID.
Perhaps we could allow UID values up to the current max (4294967294) to use googleotp out of the box.
The text was updated successfully, but these errors were encountered: