-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add keyring support for Debian and Arch
Adds optional calls to GNOME and KDE keyrings for Debian and Arch. Also upstreams a current Debian patch to call pam_env.so
- Loading branch information
1 parent
a111a0f
commit 8fb5bd9
Showing
2 changed files
with
21 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
#%PAM-1.0 | ||
auth include system-remote-login | ||
account include system-remote-login | ||
password include system-remote-login | ||
session include system-remote-login | ||
auth include system-remote-login | ||
-auth optional pam_gnome_keyring.so | ||
-auth optional pam_kwallet5.so | ||
|
||
account include system-remote-login | ||
|
||
password include system-remote-login | ||
|
||
session include system-remote-login | ||
-session optional pam_gnome_keyring.so auto_start | ||
-session optional pam_kwallet5.so auto_start |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
#%PAM-1.0 | ||
auth required pam_env.so readenv=1 | ||
auth required pam_env.so readenv=1 envfile=/etc/default/locale | ||
@include common-auth | ||
-auth optional pam_gnome_keyring.so | ||
-auth optional pam_kwallet5.so | ||
|
||
@include common-account | ||
@include common-session | ||
|
||
@include common-password | ||
|
||
@include common-session | ||
-session optional pam_gnome_keyring.so auto_start | ||
-session optional pam_kwallet5.so auto_start |