diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-02-13 22:57:45 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-02-13 22:57:45 -0500 |
commit | cb1915bf4f80282177ccb440e886943394803cb5 (patch) | |
tree | 0f83d393237e9250ff5293bcb836522f0a0a21cd | |
parent | trim trailing whitespace (diff) | |
download | pambase-cb1915bf4f80282177ccb440e886943394803cb5.tar.gz pambase-cb1915bf4f80282177ccb440e886943394803cb5.tar.bz2 pambase-cb1915bf4f80282177ccb440e886943394803cb5.zip |
system-login: move pam_gnome_keyring after pam_selinuxpambase-20150213
URL: https://bugs.gentoo.org/511600
-rw-r--r-- | system-login.in | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/system-login.in b/system-login.in index d12dcd3..e630918 100644 --- a/system-login.in +++ b/system-login.in @@ -47,12 +47,13 @@ session include system-auth #if HAVE_CONSOLEKIT session optional pam_ck_connector.so nox11 #endif -#if HAVE_GNOME_KEYRING -session optional pam_gnome_keyring.so auto_start -#endif #if HAVE_SELINUX +# Note: modules that run in the user's context must come after this line. session required pam_selinux.so multiple open #endif +#if HAVE_GNOME_KEYRING +session optional pam_gnome_keyring.so auto_start +#endif #if HAVE_MOTD session optional pam_motd.so motd=/etc/motd #endif |