From 6ea6ec5cb7d9985e2730fb9d4657624d10aed4d8 Mon Sep 17 00:00:00 2001 From: Nick Guay Date: Wed, 1 Aug 2012 12:17:55 -0400 Subject: First-boot sss_seed tool --- src/man/Makefile.am | 2 +- src/man/include/seealso.xml | 5 +- src/man/po/po4a.cfg | 1 + src/man/sss_seed.8.xml | 165 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 171 insertions(+), 2 deletions(-) create mode 100644 src/man/sss_seed.8.xml (limited to 'src/man') diff --git a/src/man/Makefile.am b/src/man/Makefile.am index 4ed76c8a..eb879802 100644 --- a/src/man/Makefile.am +++ b/src/man/Makefile.am @@ -42,7 +42,7 @@ man_MANS = \ sssd.8 sssd.conf.5 sssd-ldap.5 \ sssd-krb5.5 sssd-ipa.5 sssd-simple.5 sssd-ad.5 \ sssd_krb5_locator_plugin.8 sss_groupshow.8 \ - pam_sss.8 sss_obfuscate.8 sss_cache.8 sss_debuglevel.8 + pam_sss.8 sss_obfuscate.8 sss_cache.8 sss_debuglevel.8 sss_seed.8 if BUILD_SSH man_MANS += sss_ssh_authorizedkeys.1 sss_ssh_knownhostsproxy.1 diff --git a/src/man/include/seealso.xml b/src/man/include/seealso.xml index 80c228e3..3763e9a5 100644 --- a/src/man/include/seealso.xml +++ b/src/man/include/seealso.xml @@ -58,6 +58,9 @@ sss_obfuscate8 , + + sss_seed8 + , sssd_krb5_locator_plugin8 , @@ -78,4 +81,4 @@ pam_sss8 . - \ No newline at end of file + diff --git a/src/man/po/po4a.cfg b/src/man/po/po4a.cfg index 1f05c7a4..e20b7136 100644 --- a/src/man/po/po4a.cfg +++ b/src/man/po/po4a.cfg @@ -20,6 +20,7 @@ [type:docbook] sss_usermod.8.xml $lang:$(builddir)/$lang/sss_usermod.8.xml [type:docbook] sss_cache.8.xml $lang:$(builddir)/$lang/sss_cache.8.xml [type:docbook] sss_debuglevel.8.xml $lang:$(builddir)/$lang/sss_debuglevel.8.xml +[type:docbook] sss_seed.8.xml $lang:$(builddir)/$lang/sss_seed.8.xml [type:docbook] sss_ssh_authorizedkeys.1.xml $lang:$(builddir)/$lang/sss_ssh_authorizedkeys.1.xml [type:docbook] sss_ssh_knownhostsproxy.1.xml $lang:$(builddir)/$lang/sss_ssh_knownhostsproxy.1.xml [type:docbook] include/service_discovery.xml $lang:$(builddir)/$lang/include/service_discovery.xml opt:"-k 0" diff --git a/src/man/sss_seed.8.xml b/src/man/sss_seed.8.xml new file mode 100644 index 00000000..e83b610b --- /dev/null +++ b/src/man/sss_seed.8.xml @@ -0,0 +1,165 @@ + + + +SSSD Manual pages + + + + + sss_seed + 8 + + + + sss_seed + seed the SSSD cache with a user + + + + + sss_seed + + options + + -D DOMAIN + -n USER + + + + + DESCRIPTION + + sss_seed seeds the SSSD cache with a user entry + and temporary password. If a user entry is already present in the + SSSD cache then the entry is updated with the temporary password. + + + + + + + OPTIONS + + + + , + DOMAIN + + + + Provide the name of the domain in which the + user is a member of. The domain is also used to + retrieve user information. The domain must be configured + in sssd.conf. The DOMAIN + option must be provided. + Information retrieved from the domain + overrides what is provided in the options. + + + + + + , + USER + + + + The username of the entry to be created or modified + in the cache. The USER option + must be provided. + + + + + + , + UID + + + + Set the UID of the user to + UID. + + + + + + , + GID + + + + Set the GID of the user to + GID. + + + + + + , + COMMENT + + + + Any text string describing the user. Often used as + the field for the user's full name. + + + + + + , + HOME_DIR + + + + Set the home directory of the user to + HOME_DIR. + + + + + + , + SHELL + + + + Set the login shell of the user to + SHELL. + + + + + + , + + + + Interactive mode for entering user information. This + option will only prompt for information not provided in + the options or retrieved from the domain. + + + + + + , + PASS_FILE + + + + Specify file to read user's password from. (if not + specified password is prompted for) + + + + + + + + + + + -- cgit