summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-22 20:41:40 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-22 20:41:40 +1000
commit220bf133b699493f57ed22052108fccc17680ad7 (patch)
treec3b261f1b32463096a9ea3b3588d97d75b56a05f
parent480ef8ddae5c5795859752c15f898271c019eefc (diff)
- (dtucker) [contrib/aix/pam.conf] Include example pam.conf for AIX from
article by genty at austin.ibm.com, included with the author's permission.
-rw-r--r--ChangeLog4
-rw-r--r--contrib/aix/pam.conf20
2 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7351ded5b..6ce8fbaee 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -27,6 +27,8 @@
27 - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/ 27 - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/
28 - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN. 28 - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN.
29 Report by distler AT golem ph utexas edu. 29 Report by distler AT golem ph utexas edu.
30 - (dtucker) [contrib/aix/pam.conf] Include example pam.conf for AIX from
31 article by genty at austin.ibm.com, included with the author's permission.
30 32
3120030919 3320030919
32 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; 34 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@@ -1163,4 +1165,4 @@
1163 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1165 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1164 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1166 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1165 1167
1166$Id: ChangeLog,v 1.3022 2003/09/22 04:38:11 tim Exp $ 1168$Id: ChangeLog,v 1.3023 2003/09/22 10:41:40 dtucker Exp $
diff --git a/contrib/aix/pam.conf b/contrib/aix/pam.conf
new file mode 100644
index 000000000..1495f43cb
--- /dev/null
+++ b/contrib/aix/pam.conf
@@ -0,0 +1,20 @@
1#
2# PAM configuration file /etc/pam.conf
3# Example for OpenSSH on AIX 5.2
4#
5
6# Authentication Management
7sshd auth required /usr/lib/security/pam_aix
8OTHER auth required /usr/lib/security/pam_aix
9
10# Account Management
11sshd account required /usr/lib/security/pam_aix
12OTHER account required /usr/lib/security/pam_aix
13
14# Session Management
15sshd password required /usr/lib/security/pam_aix
16OTHER password required /usr/lib/security/pam_aix
17
18# Password Management
19sshd session required /usr/lib/security/pam_aix
20OTHER session required /usr/lib/security/pam_aix