diff options
author | John Terpstra <jht@samba.org> | 2003-04-04 03:52:35 +0000 |
---|---|---|
committer | John Terpstra <jht@samba.org> | 2003-04-04 03:52:35 +0000 |
commit | 2e629a17bb8ede16a6e82ccece82428b0801aaf3 (patch) | |
tree | ca72c34448ed7700b3fab8fdd2b220bbaa5763db /docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml | |
parent | 94e5719dac45baffc5f5dad6e045ac99999c76e9 (diff) | |
download | samba-2e629a17bb8ede16a6e82ccece82428b0801aaf3.tar.gz samba-2e629a17bb8ede16a6e82ccece82428b0801aaf3.tar.bz2 samba-2e629a17bb8ede16a6e82ccece82428b0801aaf3.zip |
More docs updates. Much more under way.
(This used to be commit ed6fd02ff806c7cda9fb05fe3b2bf96be164c1ec)
Diffstat (limited to 'docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml')
-rw-r--r-- | docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml b/docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml index 7608f821cf..f2a6fc06ac 100644 --- a/docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml +++ b/docs/docbook/projdoc/PAM-Authentication-And-Samba.sgml @@ -1,6 +1,4 @@ <chapter id="pam"> - - <chapterinfo> <author> <firstname>John</firstname><surname>Terpstra</surname> @@ -14,8 +12,7 @@ <pubdate> (Jun 21 2001) </pubdate> </chapterinfo> -<title>Configuring PAM for distributed but centrally -managed authentication</title> +<title>PAM Configuration for Centrally Managed Authentication</title> <sect1> <title>Samba and PAM</title> @@ -139,10 +136,10 @@ Linux system. The default condition uses <filename>pam_pwdb.so</filename>. #%PAM-1.0 # The PAM configuration file for the `samba' service # - auth required /lib/security/pam_pwdb.so nullok nodelay shadow audit - account required /lib/security/pam_pwdb.so audit nodelay - session required /lib/security/pam_pwdb.so nodelay - password required /lib/security/pam_pwdb.so shadow md5 + auth required pam_pwdb.so nullok nodelay shadow audit + account required pam_pwdb.so audit nodelay + session required pam_pwdb.so nodelay + password required pam_pwdb.so shadow md5 </programlisting></para> <para> @@ -157,10 +154,10 @@ program. #%PAM-1.0 # The PAM configuration file for the `samba' service # - auth required /lib/security/pam_smbpass.so nodelay - account required /lib/security/pam_pwdb.so audit nodelay - session required /lib/security/pam_pwdb.so nodelay - password required /lib/security/pam_smbpass.so nodelay smbconf=/etc/samba.d/smb.conf + auth required pam_smbpass.so nodelay + account required pam_pwdb.so audit nodelay + session required pam_pwdb.so nodelay + password required pam_smbpass.so nodelay smbconf=/etc/samba.d/smb.conf </programlisting></para> <note><para>PAM allows stacking of authentication mechanisms. It is |