diff --git a/Python/etc/pam.d/common-password b/Python/etc/pam.d/common-password index 05ac273..0f7c937 100644 --- a/Python/etc/pam.d/common-password +++ b/Python/etc/pam.d/common-password @@ -55,4 +55,6 @@ else: @# since the modules above will each just jump around @password required pam_permit.so @# and here are more per-package modules (the "Additional" block) +if has("vo"): + @password optional pam_gnome_keyring.so @# end of pam-auth-update config diff --git a/Python/etc/pam.d/common-session b/Python/etc/pam.d/common-session index f8beead..c1a1550 100644 --- a/Python/etc/pam.d/common-session +++ b/Python/etc/pam.d/common-session @@ -30,4 +30,8 @@ if True: # TODO get rid of @ @session required pam_unix.so if has('ldap'): out("session [success=ok default=ignore] %s minimum_uid=500" % (pam_module,)) + if has("jessie"): + out("session optional pam_systemd.so") + if has("vo"): + out("session optional pam_ck_connector.so nox11") @# end of pam-auth-update config