sshd.confd 773 B

12345678910111213141516171819202122232425262728293031323334
  1. # /etc/conf.d/sshd: config file for /etc/init.d/sshd
  2. # Where is your sshd_config file stored?
  3. SSHD_CONFDIR="${RC_PREFIX%/}/etc/ssh"
  4. # Any random options you want to pass to sshd.
  5. # See the sshd(8) manpage for more info.
  6. SSHD_OPTS=""
  7. # Wait one second (length chosen arbitrarily) to see if sshd actually
  8. # creates a PID file, or if it crashes for some reason like not being
  9. # able to bind to the address in ListenAddress.
  10. #SSHD_SSD_OPTS="--wait 1000"
  11. # Pid file to use (needs to be absolute path).
  12. #SSHD_PIDFILE="${RC_PREFIX%/}/run/sshd.pid"
  13. # Path to the sshd binary (needs to be absolute path).
  14. #SSHD_BINARY="${RC_PREFIX%/}/usr/bin/sshd"
  15. # Path to the ssh-keygen binary (needs to be absolute path).
  16. #SSHD_KEYGEN_BINARY="${RC_PREFIX%/}/usr/bin/ssh-keygen"