From 1c48b5a62f73234ed26bb20f0ab345ab61cda0ab Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 18 Feb 2010 07:49:04 -0500 Subject: Rename server/ directory to src/ Also update BUILD.txt --- src/man/sss_useradd.8.xml | 191 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 191 insertions(+) create mode 100644 src/man/sss_useradd.8.xml (limited to 'src/man/sss_useradd.8.xml') diff --git a/src/man/sss_useradd.8.xml b/src/man/sss_useradd.8.xml new file mode 100644 index 000000000..7620ffdad --- /dev/null +++ b/src/man/sss_useradd.8.xml @@ -0,0 +1,191 @@ + + + +SSSD Manual pages + + + + + sss_useradd + 8 + + + + sss_useradd + create a new user + + + + + sss_useradd + + options + + LOGIN + + + + + DESCRIPTION + + sss_useradd creates a new user account using + the values specified on the command line plus the default values from + the system. + + + + + OPTIONS + + + + , + UID + + + + Set the UID of the user to the value of UID. + If not given, it is chosen automatically. + + + + + + , + GID + + + + Set the GID or group membership of the user to the value + of GID. If not given, it is + chosen automatically. + + + + + + , + COMMENT + + + + Any text string describing the user. Often used as + the field for the user's full name. + + + + + + , + HOME_DIR + + + + The home directory of the user account. + The default is to append the LOGIN name + to /home and use that as the home directory. + The base that is prepended before LOGIN is tunable + with user_defaults/baseDirectory setting in sssd.conf. + + + + + + , + SHELL + + + + The user's login shell. The default is currently /bin/bash. + The default can be changed with + user_defaults/defaultShell setting + in sssd.conf. + + + + + + , + GROUPS + + + + A list of existing groups this user is also a member of. + + + + + + , + + + + Create the user's home directory if it does not + exist. The files and directories contained in the + skeleton directory (which can be defined with the + -k option or in the config file) will be copied + to the home directory. + + + + + + , + + + + Do not create the user's home directory. Overrides + configuration settings. + + + + + + , + SKELDIR + + + + The skeleton directory, which contains files + and directories to be copied in the user's home + directory, when the home directory is + created by sss_useradd. + + + This option is only valid if the + (or ) option is + specified, or creation of home directories is set to TRUE + in the configuration. + + + + + + + + + SEE ALSO + + + sss_groupadd8 + , + + sss_groupdel8 + , + + sss_groupshow8 + , + + sss_groupmod8 + , + + sss_userdel8 + , + + sss_usermod8 + . + + + + -- cgit