diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-02-13 22:54:32 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-02-13 22:54:32 -0500 |
commit | e8d14735cdcb7a7614eacc2d719737bf5144631c (patch) | |
tree | a81556db9440bda47e5ad7d7ad642387cad3a92d | |
parent | make nullok into a build time option (diff) | |
download | pambase-e8d14735cdcb7a7614eacc2d719737bf5144631c.tar.gz pambase-e8d14735cdcb7a7614eacc2d719737bf5144631c.tar.bz2 pambase-e8d14735cdcb7a7614eacc2d719737bf5144631c.zip |
trim trailing whitespace
-rw-r--r-- | su.in | 1 | ||||
-rw-r--r-- | system-auth.in | 6 | ||||
-rw-r--r-- | system-login.in | 7 |
3 files changed, 6 insertions, 8 deletions
@@ -9,4 +9,3 @@ password include system-auth session include system-auth session required pam_env.so session optional pam_xauth.so - diff --git a/system-auth.in b/system-auth.in index 1f7ffbd..c729004 100644 --- a/system-auth.in +++ b/system-auth.in @@ -10,14 +10,14 @@ auth KRB5_CONTROL pam_krb5.so KRB5_PARAMS auth required pam_unix.so try_first_pass LIKEAUTH NULLOK DEBUG /* This is needed to make sure that the Kerberos skip-on-success won't cause a bad jump. */ auth optional pam_permit.so - + #if HAVE_KRB5 account KRB5_CONTROL pam_krb5.so KRB5_PARAMS #endif account required pam_unix.so DEBUG /* This is needed to make sure that the Kerberos skip-on-success won't cause a bad jump. */ account optional pam_permit.so - + #if HAVE_CRACKLIB password required pam_cracklib.so difok=2 minlen=8 dcredit=2 ocredit=2 retry=3 DEBUG #endif @@ -30,7 +30,7 @@ password KRB5_CONTROL pam_krb5.so KRB5_PARAMS password required pam_unix.so try_first_pass UNIX_AUTHTOK NULLOK UNIX_EXTENDED_ENCRYPTION DEBUG /* This is needed to make sure that the Kerberos skip-on-success won't cause a bad jump. */ password optional pam_permit.so - + #if HAVE_PAM_SSH session optional pam_ssh.so #endif diff --git a/system-login.in b/system-login.in index 11ac032..d12dcd3 100644 --- a/system-login.in +++ b/system-login.in @@ -11,7 +11,7 @@ auth include system-auth #if HAVE_GNOME_KEYRING auth optional pam_gnome_keyring.so #endif - + #if HAVE_ACCESS account required pam_access.so DEBUG #endif @@ -25,12 +25,12 @@ account include system-auth #if defined(TALLY_MODULE) account required TALLY_MODULE onerr=succeed DEBUG #endif - + password include system-auth #if HAVE_GNOME_KEYRING password optional pam_gnome_keyring.so #endif - + #if HAVE_LOGINUID session optional pam_loginuid.so #endif @@ -59,4 +59,3 @@ session optional pam_motd.so motd=/etc/motd #if HAVE_MAIL session optional pam_mail.so #endif - |