aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-02-27 14:54:58 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2009-02-27 14:54:58 +0000
commitaaf0e433317374ee564582c75389389b60fd7b27 (patch)
tree9cb64965ce7754c6f7f276d5341ee478a5b382ab /doc
parenta6ce07e20e5cb3090f5b21dbe6d428d921a931ee (diff)
downloadpam-modules-aaf0e433317374ee564582c75389389b60fd7b27.tar.gz
pam-modules-aaf0e433317374ee564582c75389389b60fd7b27.tar.bz2
Rewrite Makefile.am's in a clearer and simpler way
* configure.ac: Require libtool 2.2.5a * Make.rules (.c.lo, .lo.la): Remove (AM_LDFLAGS, INCLUDES, LIBS): New assignments. * pam_sql/Makefile.am, pam_fshadow/Makefile.am, pam_sql/Makefile.am, pam_regex/Makefile.am, pam_log/Makefile.am: Rewrite. * pam_sql/pam_sql.h, pam_sql/pam_mysql.c, pam_sql/pam_pgsql.c. pam_sql/pam_sql.c: Rewrite. * pam_sql/sha1.h, pam_sql/md5.c, pam_sql/md5.h, pam_sql/sha1.c * pam_fshadow/pam_fshadow.c: New option [no]shadow * doc/pam-modules.texi: Update. * lib/graypam.h (gray_trim_ws): New proto * lib/strutil.c: New file. * lib/Makefile.am: Add strutil.c git-svn-id: file:///svnroot/pam-modules/trunk@105 56984be4-0537-0410-a56c-fcb268c96130
Diffstat (limited to 'doc')
-rw-r--r--doc/pam-modules.texi15
1 files changed, 13 insertions, 2 deletions
diff --git a/doc/pam-modules.texi b/doc/pam-modules.texi
index e16622f..fddfeb8 100644
--- a/doc/pam-modules.texi
+++ b/doc/pam-modules.texi
@@ -362,6 +362,12 @@ virtual domain mode as well. The table below summarizes these options.
Do not require @file{passwd} file to be present. Only
@file{shadow} is used for authentication.
+@xopindex{noshadow, introduced}
+@item noshadow
+ Do not require @file{shadow} file to be present. Only
+@file{passwd} is used for authentication. Notice, that it is an error
+to specify both @code{nopasswd} and @code{noshadow}.
+
@xopindex{sysconfdir, introduced}
@item sysconfdir=@var{dir}
Set full name of the directory where @file{shadow} and
@@ -485,6 +491,11 @@ This section summarizes all @command{pam_fshadow} command line options:
Use only @file{shadow} for authentication. @xref{pam_fshadow common
options, nopasswd}.
+@opsummary{noshadow}
+@item nopasswd
+ Use only @file{passwd} for authentication. @xref{pam_fshadow common
+options, noshadow}.
+
@opsummary{regex}
@item regex=@var{expr}
Define a regular expression for splitting user name into the proper
@@ -647,7 +658,7 @@ lower case and removes any suffix starting from the @samp{@@} symbol:
@smallexample
@group
-pam_regex.so extended transform=s/.*/\L&/g;s/@@.*/
+pam_regex.so extended transform=s/.*/\L&/g;s/@@.*//
@end group
@end smallexample
@@ -660,7 +671,7 @@ the expression.
@smallexample
@group
-pam_regex.so extended transform=s/.*/\L&/g;s/@@.*/ \
+pam_regex.so extended transform=s/.*/\L&/g;s/@@.*// \
regex=^(anoncvs|anonymous)$ sense=deny
@end group
@end smallexample

Return to:

Send suggestions and report system problems to the System administrator.