OpenBSD manual page server

Manual Page Search Parameters

USERMOD(8) System Manager's Manual USERMOD(8)

usermodmodify user login information

usermod [-moUvZ] [-c comment] [-d home-directory] [-e expiry-time] [-f inactive-time] [-G secondary-group[,group,...]] [-g gid | name | =uid] [-L login-class] [-l new-login] [-p password] [-S secondary-group[,group,...]] [-s shell] [-u uid] user

The usermod utility modifies user login information on the system.

Default values are taken from the information provided in the /etc/usermgmt.conf file, which, if running as root, is created using the built-in defaults if it does not exist.

After setting any defaults, and then reading values from /etc/usermgmt.conf, the following command line options are processed:

comment
Sets the comment field (also, for historical reasons known as the GECOS field) which will be added for the user, and typically will include the user's full name and, perhaps, contact information for the user.
home-directory
Sets the home directory to home-directory without populating it; if the -m option is specified, tries to move the old home directory to home-directory.
expiry-time
Sets the time at which the account expires. It should be entered in the form “month day year”, where month is the month name (the first three characters are sufficient), day is the day of the month, and year is the year. Time in seconds since the Epoch (UTC) is also valid. A value of 0 can be used to disable this feature. This value can be preset for new users using the expire field in the /etc/usermgmt.conf file. See usermgmt.conf(5) for more details.
inactive-time
Sets the time at which the password expires. See the -e option.
secondary-group[,group,...]
Appends the user to the given groups in the /etc/group file. -G and -S are mutually exclusive.
gid | name |
Gives the group name or identifier to be used for the user's primary group. If this is the special string =uid, usermod creates a group with the same ID as the UID; if such a group already exists a warning is given and no group is created. Groups can be preset for all users by using the group field in the /etc/usermgmt.conf file. See usermgmt.conf(5) for more details.
login-class
This option sets the login class for the user being created. See login.conf(5) for more information on user login classes. This value can be preset for all users by using the class field in the /etc/usermgmt.conf file. See usermgmt.conf(5) for more details.
new-login
Gives the new user name. It must consist of alphanumeric characters, or the characters ‘.’, ‘-’ or ‘_’.
Moves the home directory from its old position to the new one. If -d is not specified, the new-user argument of the -l option is used; one of -d and -l is needed.
Allows duplicate UIDs to be given.
password
Specifies a password encrypted with encrypt(1) for the user. This password can then be changed by using the chpass(1) utility. This value can be preset for all users by using the password field in the /etc/usermgmt.conf file. See usermgmt.conf(5) for more details.
secondary-group[,group,...]
Sets the secondary groups the user will be a member of in the /etc/group file. Setting secondary-group to an empty value (e.g. '') removes the user from all secondary groups. -S and -G are mutually exclusive.
shell
Specifies the login shell for the user. This value can be preset for all users by using the shell field in the /etc/usermgmt.conf file. See usermgmt.conf(5) for more details.
Unlock the account by removing the trailing ‘-’ from the user's shell and the ‘*’ prefix from the password. -U and -Z are mutually exclusive and cannot be used with -p.
uid
Specifies a new UID for the user. Boundaries for this value can be preset for all users by using the range field in the /etc/usermgmt.conf file. See usermgmt.conf(5) for more details.
Enables verbose mode - explain the commands as they are executed.
Lock the account by appending a ‘-’ to the user's shell and prefixing the password with ‘*’. -Z and -U are mutually exclusive and cannot be used with -p.

Once the information has been verified, usermod uses pwd_mkdb(8) to update the user database. This is run in the background and, at very large sites, could take several minutes. Until this update is completed, the password file is unavailable for other updates and the new information is not available to programs.

/etc/usermgmt.conf
 

The usermod utility exits 0 on success, and >0 if an error occurs.

chpass(1), group(5), passwd(5), usermgmt.conf(5), pwd_mkdb(8)

Other implementations of the usermod utility use the inactive-time parameter to refer to the maximum number of days allowed between logins (this is used to lock "stale" accounts that have not been used for a period of time). However, on OpenBSD systems this parameter refers instead to the password change time. This is due to differences in the passwd(5) database compared to other operating systems.

The usermod utility first appeared in OpenBSD 2.7.

The usermod utility was written by Alistair G. Crooks <agc@NetBSD.org>.

November 30, 2016 OpenBSD-current