diff options
author | Andrew G. Morgan <morgan@kernel.org> | 2001-11-27 05:25:43 +0000 |
---|---|---|
committer | Andrew G. Morgan <morgan@kernel.org> | 2001-11-27 05:25:43 +0000 |
commit | f681ae7495809abb22e9168175779a6c4c2dc5e7 (patch) | |
tree | b0f09cb588c53a46325eba2f4cce1b993e6a62f8 | |
parent | db864534d2f54492b21cd11e2838a2b77291fcc0 (diff) | |
download | pam-f681ae7495809abb22e9168175779a6c4c2dc5e7.tar.gz pam-f681ae7495809abb22e9168175779a6c4c2dc5e7.tar.bz2 pam-f681ae7495809abb22e9168175779a6c4c2dc5e7.zip |
Relevant BUGIDs: 476934
Purpose of commit: documentation fix
Commit summary:
---------------
Module doesn't understand 'console' but does understand 'LOCAL'. Fix
from Nalin.
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | modules/pam_access/access.conf | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -49,6 +49,8 @@ bug report - outstanding bugs are listed here: 0.76: please submit patches for this section with actual code/doc patches! +* pam_access: default access.conf file contained a type (console + instead of LOCAL) fix from Nalin (Bug 476934 - agmorgan) * pam_unix: fixed bizarre memory leak pointed out by Fernando Trias (Bug 483959 - agmorgan) * misc string comparison length checking changes from Nalin. Modules diff --git a/modules/pam_access/access.conf b/modules/pam_access/access.conf index abfefa5e..9ecf2ffd 100644 --- a/modules/pam_access/access.conf +++ b/modules/pam_access/access.conf @@ -38,7 +38,7 @@ # # Disallow console logins to all but a few accounts. # -#-:ALL EXCEPT wheel shutdown sync:console +#-:ALL EXCEPT wheel shutdown sync:LOCAL # # Disallow non-local logins to privileged accounts (group wheel). # |