diff options
author | Kay Sievers <kay@vrfy.org> | 2014-07-27 14:08:11 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2014-07-27 14:34:19 +0200 |
commit | e5168066e70e04906241283e026882c89d72db33 (patch) | |
tree | 9d7848645aaf0d40282aa5a3f3435018c81d648e /factory/etc | |
parent | c264aeab4b0e7b69f469e12e78d4a48b3ed7a66e (diff) |
factory: PAM - add generic fallback config
Single PAM fallback config file to be used in /etc to allow
bootstrapping of a system with an empty /etc.
Diffstat (limited to 'factory/etc')
-rw-r--r-- | factory/etc/pam.d/other | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/factory/etc/pam.d/other b/factory/etc/pam.d/other new file mode 100644 index 0000000000..5b1a81f599 --- /dev/null +++ b/factory/etc/pam.d/other @@ -0,0 +1,13 @@ +# This file is part of systemd. + +auth sufficient pam_unix.so nullok try_first_pass + +account required pam_nologin.so +account sufficient pam_unix.so + +password sufficient pam_unix.so nullok sha512 shadow try_first_pass try_authtok + +-session optional pam_loginuid.so +-session optional pam_systemd.so +session required pam_limits.so +session sufficient pam_unix.so |