From ca2fa90f8e7a9399c7c44781f1a032fe10f98cdc Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Sun, 10 May 2009 23:02:21 +0200 Subject: Manpage generation Provides a set of make rules for generating UNIX manual pages from DocBook 4.5 source as well as sample manpage for sss_useradd. Automatic generation of manual pages during "make" process is tunable with config parameter "--with-manpages". To rebuild the man pages separately, use the "make doc" target. Before building, the manpages are validated using a DTD schema. --- server/man/sss_useradd.8.xml | 138 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 server/man/sss_useradd.8.xml (limited to 'server/man/sss_useradd.8.xml') diff --git a/server/man/sss_useradd.8.xml b/server/man/sss_useradd.8.xml new file mode 100644 index 00000000..98bd7272 --- /dev/null +++ b/server/man/sss_useradd.8.xml @@ -0,0 +1,138 @@ + + + +SSSD Manual pages + + + + + sss_useradd + 8 + + + + sss_useradd + create a new user + + + + + sss_useradd + + options + + LOGIN + + + + + DESCRIPTION + + sss_useradd command 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 login directory name. + + + + + + , + SHELL + + + + The user's login shell. The default is currently /bin/bash. + + + + + + , + GROUPS + + + + A list of existing groups this user is also a member of. + + + + + + + + + SEE ALSO + + + groupadd8 + , + + groupdel8 + , + + groupmod8 + , + + userdel8 + , + + usermod8 + . + + + + -- cgit