blob: f8bfa84e498668cca4a1c41658b3f41237bf0940 [file] [log] [blame]
Damien Miller606f8802000-09-16 15:39:56 +11001README for OpenSSH HP-UX contrib files
Kevin Stevese918d792000-12-12 00:08:12 +00002Kevin Steves <stevesk@pobox.com>
Damien Miller606f8802000-09-16 15:39:56 +11003
4sshd: configuration file for sshd.rc
5sshd.rc: SSH startup script
Kevin Stevesee184da2000-10-18 13:45:40 +00006egd: configuration file for egd.rc
7egd.rc: EGD (entropy gathering daemon) startup script
Damien Miller606f8802000-09-16 15:39:56 +11008
9To install:
10
Kevin Stevesee184da2000-10-18 13:45:40 +000011sshd.rc:
12
Damien Miller606f8802000-09-16 15:39:56 +110013o Verify paths in sshd.rc match your local installation
14 (WHAT_PATH and WHAT_PID)
15o Customize sshd if needed (SSHD_ARGS)
16o Install:
17
18 # cp sshd /etc/rc.config.d
19 # chmod 444 /etc/rc.config.d/sshd
20 # cp sshd.rc /sbin/init.d
21 # chmod 555 /sbin/init.d/sshd.rc
22 # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K100sshd
23 # ln -s /sbin/init.d/sshd.rc /sbin/rc2.d/S900sshd
Kevin Stevesee184da2000-10-18 13:45:40 +000024
25egd.rc:
26
Kevin Steves3c516762000-12-06 00:48:05 +000027o Verify egd.pl path in egd.rc matches your local installation
Kevin Stevesee184da2000-10-18 13:45:40 +000028 (WHAT_PATH)
29o Customize egd if needed (EGD_ARGS and EGD_LOG)
30o Add pseudo account:
31
Kevin Stevesac096652000-10-18 19:41:14 +000032 # groupadd egd
33 # useradd -g egd egd
34 # mkdir -p /etc/opt/egd
35 # chown egd:egd /etc/opt/egd
36 # chmod 711 /etc/opt/egd
Kevin Stevesee184da2000-10-18 13:45:40 +000037
38o Install:
39
40 # cp egd /etc/rc.config.d
41 # chmod 444 /etc/rc.config.d/egd
42 # cp egd.rc /sbin/init.d
43 # chmod 555 /sbin/init.d/egd.rc
Kevin Steves3c516762000-12-06 00:48:05 +000044 # ln -s /sbin/init.d/egd.rc /sbin/rc1.d/K600egd
45 # ln -s /sbin/init.d/egd.rc /sbin/rc2.d/S400egd