diff options
author | Kevin Steves <stevesk@pobox.com> | 2000-10-18 15:45:40 +0200 |
---|---|---|
committer | Kevin Steves <stevesk@pobox.com> | 2000-10-18 15:45:40 +0200 |
commit | ee184dae24a9da5ca419e3f1367536e6c509fe9b (patch) | |
tree | 7729d56e3c35dcabb58fd39b9dc2075c0ecd4cd5 /contrib/hpux/README | |
parent | - (stevesk) Add initial support for setproctitle(). Current (diff) | |
download | openssh-ee184dae24a9da5ca419e3f1367536e6c509fe9b.tar.xz openssh-ee184dae24a9da5ca419e3f1367536e6c509fe9b.zip |
- (stevesk) Add egd startup scripts to contrib/hpux/
Diffstat (limited to 'contrib/hpux/README')
-rw-r--r-- | contrib/hpux/README | 26 |
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> sshd: configuration file for sshd.rc sshd.rc: SSH startup script +egd: configuration file for egd.rc +egd.rc: EGD (entropy gathering daemon) startup script To install: +sshd.rc: + o Verify paths in sshd.rc match your local installation (WHAT_PATH and WHAT_PID) o Customize sshd if needed (SSHD_ARGS) @@ -17,3 +21,25 @@ o Install: # chmod 555 /sbin/init.d/sshd.rc # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K100sshd # ln -s /sbin/init.d/sshd.rc /sbin/rc2.d/S900sshd + +egd.rc: + +o Verify egd.pl path in egd.rc match your local installation + (WHAT_PATH) +o Customize egd if needed (EGD_ARGS and EGD_LOG) +o Add pseudo account: + +# groupadd egd +# useradd -g egd egd +# mkdir -p /etc/opt/egd +# chown egd:egd /etc/opt/egd +# chmod 711 /etc/opt/egd + +o Install: + + # cp egd /etc/rc.config.d + # chmod 444 /etc/rc.config.d/egd + # cp egd.rc /sbin/init.d + # chmod 555 /sbin/init.d/egd.rc + # ln -s /sbin/init.d/sshd.rc /sbin/rc1.d/K600egd + # ln -s /sbin/init.d/sshd.rc /sbin/rc2.d/S400egd |