mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 22:54:10 +02:00
This package will include the three big third-party patch series for HPN/SCTP/X509 functionality in OpenSSH. Historically, these patches have caused numerous issues for users in the OpenSSH package and they are of questionable quality. By maintaining these patches in a separate package, we can minimize the effect of them on the garden path, which should be to provide our users with a minimally patched OpenSSH experience. Furthermore, since vanilla OpenSSH package will not require a large chunk of rebasing for these patches, we can more easily bump OpenSSH for new releases. Signed-off-by: David Seifert <soap@gentoo.org> Signed-off-by: Sam James <sam@gentoo.org>
33 lines
774 B
Text
33 lines
774 B
Text
# /etc/conf.d/sshd: config file for /etc/init.d/sshd
|
|
|
|
# Where is your sshd_config file stored?
|
|
|
|
SSHD_CONFDIR="${RC_PREFIX%/}/etc/ssh"
|
|
|
|
|
|
# Any random options you want to pass to sshd.
|
|
# See the sshd(8) manpage for more info.
|
|
|
|
SSHD_OPTS=""
|
|
|
|
|
|
# Wait one second (length chosen arbitrarily) to see if sshd actually
|
|
# creates a PID file, or if it crashes for some reason like not being
|
|
# able to bind to the address in ListenAddress.
|
|
|
|
#SSHD_SSD_OPTS="--wait 1000"
|
|
|
|
|
|
# Pid file to use (needs to be absolute path).
|
|
|
|
#SSHD_PIDFILE="${RC_PREFIX%/}/run/sshd.pid"
|
|
|
|
|
|
# Path to the sshd binary (needs to be absolute path).
|
|
|
|
#SSHD_BINARY="${RC_PREFIX%/}/usr/sbin/sshd"
|
|
|
|
|
|
# Path to the ssh-keygen binary (needs to be absolute path).
|
|
|
|
#SSHD_KEYGEN_BINARY="${RC_PREFIX%/}/usr/bin/ssh-keygen"
|