diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2004-09-14 13:16:29 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2004-09-14 13:16:29 +0000 |
commit | 44d2b97a5ca02cad258093bd3add986f3e095941 (patch) | |
tree | 0cc77ae80371a9c1740e529e678f98b761d97ef4 /modules | |
parent | ad89e8953313866982bfd5bc69eab42a2b2b666d (diff) | |
download | pam-44d2b97a5ca02cad258093bd3add986f3e095941.tar.gz pam-44d2b97a5ca02cad258093bd3add986f3e095941.tar.bz2 pam-44d2b97a5ca02cad258093bd3add986f3e095941.zip |
Relevant BUGIDs:
Purpose of commit:
Commit summary:
---------------
docufix: pam_mkhomedir: Remove wrong debug options (Bug 591605)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/pam_mkhomedir/README | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/pam_mkhomedir/README b/modules/pam_mkhomedir/README new file mode 100644 index 00000000..2a3e705e --- /dev/null +++ b/modules/pam_mkhomedir/README @@ -0,0 +1,25 @@ +PAM Make Home Dir module + +This 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, kerb or ldap) without using a distributed +file system or pre-creating a large number of directories. + +Here is a sample /etc/pam.d/login file: + + auth requisite pam_securetty.so + auth sufficient pam_ldap.so + auth required pam_unix.so + auth optional pam_group.so + auth optional pam_mail.so + account requisite pam_time.so + account sufficient pam_ldap.so + account required pam_unix.so + session required pam_mkhomedir.so skel=/etc/skel/ umask=0022 + session required pam_unix.so + session optional pam_lastlog.so + password required pam_unix.so + +Released under the GNU LGPL version 2 or later +Originally written by Jason Gunthorpe <jgg@debian.org> Feb 1999 + |