diff options
author | Alin Năstac <mrness@gentoo.org> | 2008-02-20 05:19:33 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2008-02-20 05:19:33 +0000 |
commit | a53fdd8ee05814f208d356bae77dbe41936c6a03 (patch) | |
tree | ed5cab25457c1676c81dc9d1e06f6cb84ff149e7 /net-misc/quagga/files | |
parent | remove old (diff) | |
download | historical-a53fdd8ee05814f208d356bae77dbe41936c6a03.tar.gz historical-a53fdd8ee05814f208d356bae77dbe41936c6a03.tar.bz2 historical-a53fdd8ee05814f208d356bae77dbe41936c6a03.zip |
Correct broken pam file (#210785).
Package-Manager: portage-2.1.3.19
RepoMan-Options: --force
Diffstat (limited to 'net-misc/quagga/files')
-rw-r--r-- | net-misc/quagga/files/quagga.pam | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/net-misc/quagga/files/quagga.pam b/net-misc/quagga/files/quagga.pam index c188f9683880..9a91ad852fbd 100644 --- a/net-misc/quagga/files/quagga.pam +++ b/net-misc/quagga/files/quagga.pam @@ -4,12 +4,12 @@ ##### if running quagga as root: # Only allow root (and possibly wheel) to use this because enable access # is unrestricted. -auth sufficient /lib/security/pam_rootok.so +auth sufficient pam_rootok.so # Uncomment the following line to implicitly trust users in the "wheel" group. -#auth sufficient /lib/security/pam_wheel.so trust use_uid +#auth sufficient pam_wheel.so trust use_uid # Uncomment the following line to require a user to be in the "wheel" group. -#auth required /lib/security/pam_wheel.so use_uid +#auth required pam_wheel.so use_uid ########################################################### # If using quagga privileges and with a seperate group for vty access, then @@ -17,9 +17,10 @@ auth sufficient /lib/security/pam_rootok.so # check for valid user/password, eg: # # only allow local users. -#auth required /lib/security/pam_securetty.so -#auth required /lib/security/pam_stack.so service=system-auth -#auth required /lib/security/pam_nologin.so -#account required /lib/security/pam_stack.so service=system-auth -#password required /lib/security/pam_stack.so service=system-auth -#session required /lib/security/pam_stack.so service=system-auth +#auth required pam_securetty.so +#auth include system-auth +#auth required pam_nologin.so +#account include system-auth +#password include system-auth +#session include system-auth +#session optional pam_console.so |