diff options
Diffstat (limited to 'debian/openssh-server.ssh.pam')
-rw-r--r-- | debian/openssh-server.ssh.pam | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/debian/openssh-server.ssh.pam b/debian/openssh-server.ssh.pam new file mode 100644 index 000000000..1332a267e --- /dev/null +++ b/debian/openssh-server.ssh.pam | |||
@@ -0,0 +1,26 @@ | |||
1 | # PAM configuration for the Secure Shell service | ||
2 | |||
3 | # Read environment variables from /etc/environment and | ||
4 | # /etc/security/pam_env.conf. | ||
5 | auth required pam_env.so # [1] | ||
6 | |||
7 | # Standard Un*x authentication. | ||
8 | @include common-auth | ||
9 | |||
10 | # Standard Un*x authorization. | ||
11 | @include common-account | ||
12 | |||
13 | # Standard Un*x session setup and teardown. | ||
14 | @include common-session | ||
15 | |||
16 | # Print the message of the day upon successful login. | ||
17 | session optional pam_motd.so # [1] | ||
18 | |||
19 | # Print the status of the user's mailbox upon successful login. | ||
20 | session optional pam_mail.so standard noenv # [1] | ||
21 | |||
22 | # Set up user limits from /etc/security/limits.conf. | ||
23 | session required pam_limits.so | ||
24 | |||
25 | # Standard Un*x password updating. | ||
26 | @include common-password | ||