diff options
author | Kevin Steves <stevesk@pobox.com> | 2001-04-20 20:56:21 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2001-04-20 20:56:21 +0000 |
commit | 32c97c3712c71e00b11dd5ba87962c146606b3ba (patch) | |
tree | 469b84ff0c5eb93324df3229f18591f2159e0bbd | |
parent | 85ecbe767e6cdcf04ac2d1784e54212533d88ae9 (diff) |
- (stevesk) document PAM service name change in INSTALL
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | INSTALL | 25 |
2 files changed, 17 insertions, 11 deletions
@@ -7,6 +7,7 @@ | |||
7 | - Update RPM spec files for CVS version.h | 7 | - Update RPM spec files for CVS version.h |
8 | - (stevesk) set the default PAM service name to __progname instead | 8 | - (stevesk) set the default PAM service name to __progname instead |
9 | of the hard-coded value "sshd"; from Mark D. Roth <roth@feep.net> | 9 | of the hard-coded value "sshd"; from Mark D. Roth <roth@feep.net> |
10 | - (stevesk) document PAM service name change in INSTALL | ||
10 | 11 | ||
11 | 20010420 | 12 | 20010420 |
12 | - OpenBSD CVS Sync | 13 | - OpenBSD CVS Sync |
@@ -5197,4 +5198,4 @@ | |||
5197 | - Wrote replacements for strlcpy and mkdtemp | 5198 | - Wrote replacements for strlcpy and mkdtemp |
5198 | - Released 1.0pre1 | 5199 | - Released 1.0pre1 |
5199 | 5200 | ||
5200 | $Id: ChangeLog,v 1.1150 2001/04/20 17:43:48 stevesk Exp $ | 5201 | $Id: ChangeLog,v 1.1151 2001/04/20 20:56:21 stevesk Exp $ |
@@ -91,15 +91,20 @@ make install | |||
91 | This will install the binaries in /opt/{bin,lib,sbin}, but will place the | 91 | This will install the binaries in /opt/{bin,lib,sbin}, but will place the |
92 | configuration files in /etc/ssh. | 92 | configuration files in /etc/ssh. |
93 | 93 | ||
94 | If you are using PAM, you may need to manually install a PAM | 94 | If you are using PAM, you may need to manually install a PAM control |
95 | control file as "/etc/pam.d/sshd" (or wherever your system | 95 | file as "/etc/pam.d/sshd" (or wherever your system prefers to keep |
96 | prefers to keep them). A generic PAM configuration is included as | 96 | them). Note that the service name used to start PAM is __progname, |
97 | "contrib/sshd.pam.generic", you may need to edit it before using it on | 97 | which is the basename of the path of your sshd (e.g., the service name |
98 | your system. If you are using a recent version of Red Hat Linux, the | 98 | for /usr/sbin/osshd will be osshd). If you have renamed your sshd |
99 | config file in contrib/redhat/sshd.pam should be more useful. | 99 | executable, your PAM configuration may need to be modified. |
100 | Failure to install a valid PAM file may result in an inability to | 100 | |
101 | use password authentication. On HP-UX 11, the standard /etc/pam.conf | 101 | A generic PAM configuration is included as "contrib/sshd.pam.generic", |
102 | configuration will work with sshd (sshd will match the OTHER service | 102 | you may need to edit it before using it on your system. If you are |
103 | using a recent version of Red Hat Linux, the config file in | ||
104 | contrib/redhat/sshd.pam should be more useful. Failure to install a | ||
105 | valid PAM file may result in an inability to use password | ||
106 | authentication. On HP-UX 11 and Solaris, the standard /etc/pam.conf | ||
107 | configuration will work with sshd (sshd will match the other service | ||
103 | name). | 108 | name). |
104 | 109 | ||
105 | There are a few other options to the configure script: | 110 | There are a few other options to the configure script: |
@@ -222,4 +227,4 @@ Please refer to the "reporting bugs" section of the webpage at | |||
222 | http://www.openssh.com/ | 227 | http://www.openssh.com/ |
223 | 228 | ||
224 | 229 | ||
225 | $Id: INSTALL,v 1.42 2001/03/03 13:29:21 djm Exp $ | 230 | $Id: INSTALL,v 1.43 2001/04/20 20:56:21 stevesk Exp $ |