-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suppress log errors for missing pam modules
LP: #1949970
- Loading branch information
1 parent
7a8462f
commit de09f2c
Showing
2 changed files
with
12 additions
and
12 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,15 +1,15 @@ | ||
#%PAM-1.0 | ||
auth required pam_permit.so | ||
auth optional pam_gnome_keyring.so | ||
auth optional pam_kwallet.so | ||
auth optional pam_kwallet5.so | ||
-auth optional pam_gnome_keyring.so | ||
-auth optional pam_kwallet.so | ||
-auth optional pam_kwallet5.so | ||
@include common-account | ||
session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so close | ||
session required pam_limits.so | ||
@include common-session | ||
session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so open | ||
session optional pam_gnome_keyring.so auto_start | ||
session optional pam_kwallet.so auto_start | ||
session optional pam_kwallet5.so auto_start | ||
-session optional pam_gnome_keyring.so auto_start | ||
-session optional pam_kwallet.so auto_start | ||
-session optional pam_kwallet5.so auto_start | ||
session required pam_env.so readenv=1 | ||
session required pam_env.so readenv=1 user_readenv=1 envfile=/etc/default/locale |
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