diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-05-30 13:03:08 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2006-05-30 13:03:08 +0000 |
commit | 6a9e09d57a7722a3a73d3405ef63d3c46f1f7673 (patch) | |
tree | 548e97808ea2bba514acaf857b374a6cf5fdfce1 | |
parent | 9a611ad9d88dfe3950889277881aa2057c9429d3 (diff) | |
download | pam-6a9e09d57a7722a3a73d3405ef63d3c46f1f7673.tar.gz pam-6a9e09d57a7722a3a73d3405ef63d3c46f1f7673.tar.bz2 pam-6a9e09d57a7722a3a73d3405ef63d3c46f1f7673.zip |
Relevant BUGIDs:
Purpose of commit: bugfix
Commit summary:
---------------
2006-05-30 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_mkhomedir/pam_mkhomedir.8.xml: Fix umask and skel
directory documentation.
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | modules/pam_mkhomedir/README | 4 | ||||
-rw-r--r-- | modules/pam_mkhomedir/pam_mkhomedir.8 | 9 | ||||
-rw-r--r-- | modules/pam_mkhomedir/pam_mkhomedir.8.xml | 8 |
4 files changed, 16 insertions, 8 deletions
@@ -1,5 +1,8 @@ 2006-05-30 Thorsten Kukuk <kukuk@thkukuk.de> + * modules/pam_mkhomedir/pam_mkhomedir.8.xml: Fix umask and skel + directory documentation. + * modules/pam_umask/Makefile.am: Include Make.xml.rules. * modules/pam_umask/pam_umask.8.xml: New. * modules/pam_umask/pam_umask.8: New, generated from xml file. diff --git a/modules/pam_mkhomedir/README b/modules/pam_mkhomedir/README index 987cf35f..64810060 100644 --- a/modules/pam_mkhomedir/README +++ b/modules/pam_mkhomedir/README @@ -7,7 +7,9 @@ DESCRIPTION The pam_mkhomedir PAM module will create a users home directory if it does not exist when the session begins. This allows users to be present in central database (such as NIS, kerberos or LDAP) without using a distributed file -system or pre-creating a large number of directories. +system or pre-creating a large number of directories. The skeleton directory +(usually /etc/skel/) is used to copy default files and also set's a umask for +the creation. The new users home directory will not be removed after logout of the user. diff --git a/modules/pam_mkhomedir/pam_mkhomedir.8 b/modules/pam_mkhomedir/pam_mkhomedir.8 index 1849a9eb..847c75ee 100644 --- a/modules/pam_mkhomedir/pam_mkhomedir.8 +++ b/modules/pam_mkhomedir/pam_mkhomedir.8 @@ -2,7 +2,7 @@ .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" Instead of manually editing it, you probably should edit the DocBook XML .\" source for it and then use the DocBook XSL Stylesheets to regenerate it. -.TH "PAM_MKHOMEDIR" "8" "05/24/2006" "Linux\-PAM Manual" "Linux\-PAM Manual" +.TH "PAM_MKHOMEDIR" "8" "05/30/2006" "Linux\-PAM Manual" "Linux\-PAM Manual" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) @@ -14,7 +14,8 @@ pam_mkhomedir \- PAM module to create users home directory \fBpam_mkhomedir.so\fR [silent] [umask=\fImode\fR] [skel=\fIskeldir\fR] .SH "DESCRIPTION" .PP -The pam_mkhomedir PAM module will create a users home directory if it does not exist when the session begins. This allows users to be present in central database (such as NIS, kerberos or LDAP) without using a distributed file system or pre\-creating a large number of directories. +The pam_mkhomedir PAM module will create a users home directory if it does not exist when the session begins. This allows users to be present in central database (such as NIS, kerberos or LDAP) without using a distributed file system or pre\-creating a large number of directories. The skeleton directory (usually +\fI/etc/skel/\fR) is used to copy default files and also set's a umask for the creation. .PP The new users home directory will not be removed after logout of the user. .SH "OPTIONS" @@ -22,9 +23,9 @@ The new users home directory will not be removed after logout of the user. \fBsilent\fR Don't print informative messages. .TP -\fBumask=\fR\fB\fImode\fR\fR +\fBumask=\fR\fB\fImask\fR\fR The user file\-creation mask is set to -\fImode\fR. The default value of umask is 0022. +\fImask\fR. The default value of mask is 0022. .TP \fBskel=\fR\fB\fI/path/to/skel/directory\fR\fR Indicate an alternative diff --git a/modules/pam_mkhomedir/pam_mkhomedir.8.xml b/modules/pam_mkhomedir/pam_mkhomedir.8.xml index 1b5a11cb..3c40de15 100644 --- a/modules/pam_mkhomedir/pam_mkhomedir.8.xml +++ b/modules/pam_mkhomedir/pam_mkhomedir.8.xml @@ -42,7 +42,9 @@ if it does not exist when the session begins. This allows users to be present in central database (such as NIS, kerberos or LDAP) without using a distributed file system or pre-creating a large - number of directories. + number of directories. The skeleton directory (usually + <filename>/etc/skel/</filename>) is used to copy default files + and also set's a umask for the creation. </para> <para> The new users home directory will not be removed after logout @@ -67,12 +69,12 @@ <varlistentry> <term> - <option>umask=<replaceable>mode</replaceable></option> + <option>umask=<replaceable>mask</replaceable></option> </term> <listitem> <para> The user file-creation mask is set to - <replaceable>mode</replaceable>. The default value of umask is + <replaceable>mask</replaceable>. The default value of mask is 0022. </para> </listitem> |