summaryrefslogtreecommitdiff
path: root/contrib/hpux/README
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/hpux/README')
-rw-r--r--contrib/hpux/README26
1 files changed, 26 insertions, 0 deletions
diff --git a/contrib/hpux/README b/contrib/hpux/README
index edddfc018..172a765d2 100644
--- a/contrib/hpux/README
+++ b/contrib/hpux/README
@@ -3,9 +3,13 @@ Kevin Steves <stevesk@sweden.hp.com>
3 3
4sshd: configuration file for sshd.rc 4sshd: configuration file for sshd.rc
5sshd.rc: SSH startup script 5sshd.rc: SSH startup script
6egd: configuration file for egd.rc
7egd.rc: EGD (entropy gathering daemon) startup script
6 8
7To install: 9To install:
8 10
11sshd.rc:
12
9o Verify paths in sshd.rc match your local installation 13o Verify paths in sshd.rc match your local installation
10 (WHAT_PATH and WHAT_PID) 14 (WHAT_PATH and WHAT_PID)
11o Customize sshd if needed (SSHD_ARGS) 15o Customize sshd if needed (SSHD_ARGS)
@@ -17,3 +21,25 @@ o Install:
17 # chmod 555 /sbin/init.d/sshd.rc 21 # chmod 555 /sbin/init.d/sshd.rc
18 # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K100sshd 22 # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K100sshd
19 # ln -s /sbin/init.d/sshd.rc /sbin/rc2.d/S900sshd 23 # ln -s /sbin/init.d/sshd.rc /sbin/rc2.d/S900sshd
24
25egd.rc:
26
27o Verify egd.pl path in egd.rc match your local installation
28 (WHAT_PATH)
29o Customize egd if needed (EGD_ARGS and EGD_LOG)
30o Add pseudo account:
31
32# 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
37
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
44 # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K600egd
45 # ln -s /sbin/init.d/sshd.rc /sbin/rc2.d/S400egd