From e1659895d7e7a1c161d7b6117c898e0ee3b62190 Mon Sep 17 00:00:00 2001 From: Jakub Hrozek Date: Thu, 28 May 2009 22:46:35 +0200 Subject: Add more manpages --- server/Makefile.am | 4 +- server/man/sss_groupadd.8.xml | 78 ++++++++++++++++++++++ server/man/sss_groupdel.8.xml | 67 +++++++++++++++++++ server/man/sss_groupmod.8.xml | 92 ++++++++++++++++++++++++++ server/man/sss_useradd.8.xml | 19 ++++-- server/man/sss_userdel.8.xml | 67 +++++++++++++++++++ server/man/sss_usermod.8.xml | 147 ++++++++++++++++++++++++++++++++++++++++++ server/man/sssd.8.xml | 125 +++++++++++++++++++++++++++++++++++ 8 files changed, 591 insertions(+), 8 deletions(-) create mode 100644 server/man/sss_groupadd.8.xml create mode 100644 server/man/sss_groupdel.8.xml create mode 100644 server/man/sss_groupmod.8.xml create mode 100644 server/man/sss_userdel.8.xml create mode 100644 server/man/sss_usermod.8.xml create mode 100644 server/man/sssd.8.xml (limited to 'server') diff --git a/server/Makefile.am b/server/Makefile.am index 2caf4f2c..31173a0e 100644 --- a/server/Makefile.am +++ b/server/Makefile.am @@ -399,7 +399,9 @@ DOCBOOK_XSLT = http://docbook.sourceforge.net/release/xsl/current/manpages/docbo XMLLINT_FLAGS = --catalogs --postvalid --nonet --xinclude --noout XSLTPROC_FLAGS = --catalogs --xinclude --nonet -dist_man_MANS = man/sss_useradd.8 +dist_man_MANS = man/sss_useradd.8 man/sss_userdel.8 man/sss_usermod.8 \ + man/sss_groupadd.8 man/sss_groupdel.8 man/sss_groupmod.8 \ + man/sssd.8 SUFFIXES = .1.xml .1 .3.xml .3 .5.xml .5 .8.xml .8 .1.xml.1: diff --git a/server/man/sss_groupadd.8.xml b/server/man/sss_groupadd.8.xml new file mode 100644 index 00000000..91966204 --- /dev/null +++ b/server/man/sss_groupadd.8.xml @@ -0,0 +1,78 @@ + + + +SSSD Manual pages + + + + + sss_groupadd + 8 + + + + sss_groupadd + create a new group + + + + + sss_groupadd + + options + + GROUP + + + + + DESCRIPTION + + sss_groupadd creates a new group. These groups are compatible + with POSIX groups, with the additional feature that they can contain other groups + as members. + + + + + OPTIONS + + + + , + GID + + + + Set the GID of the group to the value of GID. + If not given, it is chosen automatically. + + + + + + + + + SEE ALSO + + + sss_groupdel8 + , + + sss_groupmod8 + , + + sss_useradd8 + , + + sss_userdel8 + , + + sss_usermod8 + . + + + + diff --git a/server/man/sss_groupdel.8.xml b/server/man/sss_groupdel.8.xml new file mode 100644 index 00000000..83a05d96 --- /dev/null +++ b/server/man/sss_groupdel.8.xml @@ -0,0 +1,67 @@ + + + +SSSD Manual pages + + + + + sss_groupdel + 8 + + + + sss_groupdel + create a new group + + + + + sss_groupdel + + options + + GROUP + + + + + DESCRIPTION + + sss_groupdel deletes a group + identified by its name GROUP + from the system. Deleting a non-existent group is a no-op and + will not be reported as an error. + + + + + OPTIONS + + + + + + + SEE ALSO + + + sss_groupadd8 + , + + sss_groupmod8 + , + + sss_useradd8 + , + + sss_userdel8 + , + + sss_usermod8 + . + + + + diff --git a/server/man/sss_groupmod.8.xml b/server/man/sss_groupmod.8.xml new file mode 100644 index 00000000..9a73f7db --- /dev/null +++ b/server/man/sss_groupmod.8.xml @@ -0,0 +1,92 @@ + + + +SSSD Manual pages + + + + + sss_groupmod + 8 + + + + sss_groupmod + modify a group + + + + + sss_groupmod + + options + + GROUP + + + + + DESCRIPTION + + sss_groupmod modifies the + group to reflect the changes that are specified on + the command line. + + + + + OPTIONS + + + + , + GROUPS + + + + Append this group to groups specified by the + GROUPS parameter. + The GROUPS parameter + is a comma separated list of group names. + + + + + + , + GROUPS + + + + Remove this group from groups specified by the + GROUPS parameter. + + + + + + + + + SEE ALSO + + + sss_groupdel8 + , + + sss_groupadd8 + , + + sss_useradd8 + , + + sss_userdel8 + , + + sss_usermod8 + . + + + + diff --git a/server/man/sss_useradd.8.xml b/server/man/sss_useradd.8.xml index 98bd7272..039c8487 100644 --- a/server/man/sss_useradd.8.xml +++ b/server/man/sss_useradd.8.xml @@ -29,7 +29,7 @@ DESCRIPTION - sss_useradd command creates a new user account using + sss_useradd creates a new user account using the values specified on the command line plus the default values from the system. @@ -84,7 +84,9 @@ 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. + 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. @@ -96,6 +98,9 @@ The user's login shell. The default is currently /bin/bash. + The default can be changed with + user_defaults/defaultShell setting + in sssd.conf. @@ -118,19 +123,19 @@ SEE ALSO - groupadd8 + sss_groupadd8 , - groupdel8 + sss_groupdel8 , - groupmod8 + sss_groupmod8 , - userdel8 + sss_userdel8 , - usermod8 + sss_usermod8 . diff --git a/server/man/sss_userdel.8.xml b/server/man/sss_userdel.8.xml new file mode 100644 index 00000000..10fbeb13 --- /dev/null +++ b/server/man/sss_userdel.8.xml @@ -0,0 +1,67 @@ + + + +SSSD Manual pages + + + + + sss_userdel + 8 + + + + sss_userdel + delete a user account + + + + + sss_userdel + + options + + LOGIN + + + + + DESCRIPTION + + sss_userdel deletes a user + identified by login name LOGIN + from the system. Deleting a non-existent user is a no-op and + will not be reported as an error. + + + + + OPTIONS + + + + + + + SEE ALSO + + + sss_groupadd8 + , + + sss_groupdel8 + , + + sss_groupmod8 + , + + sss_useradd8 + , + + sss_usermod8 + . + + + + diff --git a/server/man/sss_usermod.8.xml b/server/man/sss_usermod.8.xml new file mode 100644 index 00000000..4a8d3bb9 --- /dev/null +++ b/server/man/sss_usermod.8.xml @@ -0,0 +1,147 @@ + + + +SSSD Manual pages + + + + + sss_usermod + 8 + + + + sss_usermod + modify a user account + + + + + sss_usermod + + options + + LOGIN + + + + + DESCRIPTION + + sss_usermod modifies the + account specified by LOGIN + to reflect the changes that are specified on the command line. + + + + + OPTIONS + + + + , + 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. + + + + + + , + SHELL + + + + The user's login shell. + + + + + + , + GROUPS + + + + Append this user to groups specified by the + GROUPS parameter. + The GROUPS parameter + is a comma separated list of group names. + + + + + + , + GROUPS + + + + Remove this user from groups specified by the + GROUPS parameter. + + + + + + , + + + + Lock the user account. The user won't be able + to log in. + + + + + + , + + + + Unlock the user account. + + + + + + + + + SEE ALSO + + + sss_groupadd8 + , + + sss_groupdel8 + , + + sss_groupmod8 + , + + sss_useradd8 + , + + sss_userdel8 + . + + + + diff --git a/server/man/sssd.8.xml b/server/man/sssd.8.xml new file mode 100644 index 00000000..06f3c5c7 --- /dev/null +++ b/server/man/sssd.8.xml @@ -0,0 +1,125 @@ + + + +SSSD Manual pages + + + + + sssd + 8 + + + + sssd + System Security Services Daemon + + + + + sssd + + options + + + + + + DESCRIPTION + + SSSD provides a set of daemons to manage access to remote + directories and authentication mechanisms. It provides an NSS and + PAM interface toward the system and a pluggable backend system to + connect to multiple different account sources as well as D-Bus + interface. It is also the basis to provide client auditing and + policy services for projects like FreeIPA. It provides a more robust database + to store local users as well as extended user data. + + + + + OPTIONS + + + + , + LEVEL + + + + Debug level to run the daemon with. 0 is the default as well + as the lowest allowed value, 10 is the most verbose mode. This setting + overrides the settings from config file. This parameter implies . + + + + + + , + + + + Become a daemon after starting up. + + + + + + , + + + + Run in the foreground, don't become a daemon. + + + + + + , + + + + Specify a non-default config file. The default is + /etc/sssd/sssd.conf. For reference + on the config file syntax and options, consult the + + sssd.conf + 5 + + manual page. + + + + + + + + + SEE ALSO + + + sssd.conf5 + , + + sss_groupadd8 + , + + sss_groupdel8 + , + + sss_groupmod8 + , + + sss_useradd8 + , + + sss_userdel8 + , + + sss_usermod8 + . + + + + -- cgit