freebsd-dev/crypto/openssh/contrib/hpux
Dag-Erling Smørgrav ce3adf4362 Pull in all the OpenSSH bits that we'd previously left out because we
didn't use them.  This will make future merges from the vendor tree much
easier.

Approved by:	re (gjb)
2013-09-21 22:24:10 +00:00
..
egd Pull in all the OpenSSH bits that we'd previously left out because we 2013-09-21 22:24:10 +00:00
egd.rc Pull in all the OpenSSH bits that we'd previously left out because we 2013-09-21 22:24:10 +00:00
README Pull in all the OpenSSH bits that we'd previously left out because we 2013-09-21 22:24:10 +00:00
sshd Pull in all the OpenSSH bits that we'd previously left out because we 2013-09-21 22:24:10 +00:00
sshd.rc Pull in all the OpenSSH bits that we'd previously left out because we 2013-09-21 22:24:10 +00:00

README for OpenSSH HP-UX contrib files
Kevin Steves <stevesk@pobox.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)
o Install:

  # cp sshd /etc/rc.config.d
  # chmod 444 /etc/rc.config.d/sshd
  # cp sshd.rc /sbin/init.d
  # 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 matches 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/egd.rc /sbin/rc1.d/K600egd
  # ln -s /sbin/init.d/egd.rc /sbin/rc2.d/S400egd