summaryrefslogtreecommitdiff
path: root/debian/openssh-server.ssh.pam
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2008-02-08 00:29:23 +0000
committerColin Watson <cjwatson@debian.org>2008-02-08 00:29:23 +0000
commit0cf35bd0df53b4e540a8b8525b5519f55737c327 (patch)
tree7acacb094349ccaab2e79445c2f033b8ee6fe0e2 /debian/openssh-server.ssh.pam
parent74cc48e9516ec9b6fe9d77cc5cc833552d3a7e8d (diff)
* Move /etc/pam.d/ssh to /etc/pam.d/sshd, allowing us to stop defining
SSHD_PAM_SERVICE (closes: #255870).
Diffstat (limited to 'debian/openssh-server.ssh.pam')
-rw-r--r--debian/openssh-server.ssh.pam39
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/openssh-server.ssh.pam b/debian/openssh-server.ssh.pam
deleted file mode 100644
index 9b7695184..000000000
--- a/debian/openssh-server.ssh.pam
+++ /dev/null
@@ -1,39 +0,0 @@
1# PAM configuration for the Secure Shell service
2
3# Read environment variables from /etc/environment and
4# /etc/security/pam_env.conf.
5auth required pam_env.so # [1]
6# In Debian 4.0 (etch), locale-related environment variables were moved to
7# /etc/default/locale, so read that as well.
8auth required pam_env.so envfile=/etc/default/locale
9
10# Standard Un*x authentication.
11@include common-auth
12
13# Disallow non-root logins when /etc/nologin exists.
14account required pam_nologin.so
15
16# Uncomment and edit /etc/security/access.conf if you need to set complex
17# access limits that are hard to express in sshd_config.
18# account required pam_access.so
19
20# Standard Un*x authorization.
21@include common-account
22
23# Standard Un*x session setup and teardown.
24@include common-session
25
26# Print the message of the day upon successful login.
27session optional pam_motd.so # [1]
28
29# Print the status of the user's mailbox upon successful login.
30session optional pam_mail.so standard noenv # [1]
31
32# Set up user limits from /etc/security/limits.conf.
33session required pam_limits.so
34
35# Set up SELinux capabilities (need modified pam)
36# session required pam_selinux.so multiple
37
38# Standard Un*x password updating.
39@include common-password