summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-22 20:42:16 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-22 20:42:16 +1000
commitd77263ea5c4f0df91bfec4ecef6e69643c9065dc (patch)
treef122d2e00dee3db27234a8e0ccf40256e877886e
parenta35bebfdff1d0485eb5061910d18714201886268 (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 a927b1d1d..643aafa92 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;
@@ -1159,4 +1161,4 @@
1159 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1161 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1160 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1162 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1161 1163
1162$Id: ChangeLog,v 1.2994.2.25 2003/09/22 04:39:14 tim Exp $ 1164$Id: ChangeLog,v 1.2994.2.26 2003/09/22 10:42:16 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