diff options
Diffstat (limited to 'source/a/util-linux/pam.d')
-rw-r--r-- | source/a/util-linux/pam.d/chfn | 6 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/chsh | 6 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/login | 11 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/runuser | 5 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/runuser-l | 4 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/su | 11 | ||||
-rw-r--r-- | source/a/util-linux/pam.d/su-l | 6 |
7 files changed, 49 insertions, 0 deletions
diff --git a/source/a/util-linux/pam.d/chfn b/source/a/util-linux/pam.d/chfn new file mode 100644 index 00000000..2dbc0aaf --- /dev/null +++ b/source/a/util-linux/pam.d/chfn @@ -0,0 +1,6 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +auth include system-auth +account include system-auth +password include system-auth +session include system-auth diff --git a/source/a/util-linux/pam.d/chsh b/source/a/util-linux/pam.d/chsh new file mode 100644 index 00000000..2dbc0aaf --- /dev/null +++ b/source/a/util-linux/pam.d/chsh @@ -0,0 +1,6 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +auth include system-auth +account include system-auth +password include system-auth +session include system-auth diff --git a/source/a/util-linux/pam.d/login b/source/a/util-linux/pam.d/login new file mode 100644 index 00000000..eb312199 --- /dev/null +++ b/source/a/util-linux/pam.d/login @@ -0,0 +1,11 @@ +#%PAM-1.0 +auth required pam_securetty.so +auth include system-auth +auth include postlogin +account required pam_nologin.so +account include system-auth +password include system-auth +session include system-auth +session include postlogin +session required pam_loginuid.so +session optional pam_ck_connector.so nox11 diff --git a/source/a/util-linux/pam.d/runuser b/source/a/util-linux/pam.d/runuser new file mode 100644 index 00000000..37f0e84e --- /dev/null +++ b/source/a/util-linux/pam.d/runuser @@ -0,0 +1,5 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +session optional pam_keyinit.so revoke +session required pam_limits.so +session required pam_unix.so diff --git a/source/a/util-linux/pam.d/runuser-l b/source/a/util-linux/pam.d/runuser-l new file mode 100644 index 00000000..fa1e4d83 --- /dev/null +++ b/source/a/util-linux/pam.d/runuser-l @@ -0,0 +1,4 @@ +#%PAM-1.0 +auth include runuser +session optional pam_keyinit.so force revoke +session include runuser diff --git a/source/a/util-linux/pam.d/su b/source/a/util-linux/pam.d/su new file mode 100644 index 00000000..c7c81487 --- /dev/null +++ b/source/a/util-linux/pam.d/su @@ -0,0 +1,11 @@ +#%PAM-1.0 +auth sufficient pam_rootok.so +# Uncomment the following line to implicitly trust users in the "wheel" group. +#auth sufficient pam_wheel.so trust use_uid +# Uncomment the following line to require a user to be in the "wheel" group. +#auth required pam_wheel.so use_uid +auth include system-auth +account include system-auth +password include system-auth +session include system-auth +session optional pam_xauth.so diff --git a/source/a/util-linux/pam.d/su-l b/source/a/util-linux/pam.d/su-l new file mode 100644 index 00000000..656a139a --- /dev/null +++ b/source/a/util-linux/pam.d/su-l @@ -0,0 +1,6 @@ +#%PAM-1.0 +auth include su +account include su +password include su +session optional pam_keyinit.so force revoke +session include su |