2015-02-27 00:58:55 +00:00
|
|
|
#!/sbin/runscript
|
2015-07-31 00:55:23 +00:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2015-02-27 00:58:55 +00:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-07-31 00:55:23 +00:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/openssh/files/sshd.rc6.4,v 1.5 2015/05/04 02:56:25 vapier Exp $
|
2015-02-27 00:58:55 +00:00
|
|
|
|
|
|
|
extra_commands="checkconfig"
|
|
|
|
extra_started_commands="reload"
|
|
|
|
|
2015-07-31 00:55:23 +00:00
|
|
|
: ${SSHD_CONFDIR:=/etc/ssh}
|
|
|
|
: ${SSHD_CONFIG:=${SSHD_CONFDIR}/sshd_config}
|
|
|
|
: ${SSHD_PIDFILE:=/var/run/${SVCNAME}.pid}
|
|
|
|
: ${SSHD_BINARY:=/usr/sbin/sshd}
|
2015-02-27 00:58:55 +00:00
|
|
|
|
|
|
|
depend() {
|
|
|
|
use logger dns
|
2015-07-31 00:55:23 +00:00
|
|
|
if [ "${rc_need+set}" = "set" ] ; then
|
2015-02-27 00:58:55 +00:00
|
|
|
: # Do nothing, the user has explicitly set rc_need
|
|
|
|
else
|
2015-07-31 00:55:23 +00:00
|
|
|
local x warn_addr
|
2015-02-27 00:58:55 +00:00
|
|
|
for x in $(awk '/^ListenAddress/{ print $2 }' "$SSHD_CONFIG" 2>/dev/null) ; do
|
2015-07-31 00:55:23 +00:00
|
|
|
case "${x}" in
|
2015-02-27 00:58:55 +00:00
|
|
|
0.0.0.0|0.0.0.0:*) ;;
|
|
|
|
::|\[::\]*) ;;
|
2015-07-31 00:55:23 +00:00
|
|
|
*) warn_addr="${warn_addr} ${x}" ;;
|
2015-02-27 00:58:55 +00:00
|
|
|
esac
|
|
|
|
done
|
2015-07-31 00:55:23 +00:00
|
|
|
if [ -n "${warn_addr}" ] ; then
|
|
|
|
need net
|
2015-02-27 00:58:55 +00:00
|
|
|
ewarn "You are binding an interface in ListenAddress statement in your sshd_config!"
|
|
|
|
ewarn "You must add rc_need=\"net.FOO\" to your /etc/conf.d/sshd"
|
|
|
|
ewarn "where FOO is the interface(s) providing the following address(es):"
|
|
|
|
ewarn "${warn_addr}"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
checkconfig() {
|
|
|
|
if [ ! -d /var/empty ] ; then
|
|
|
|
mkdir -p /var/empty || return 1
|
|
|
|
fi
|
|
|
|
|
2015-07-31 00:55:23 +00:00
|
|
|
if [ ! -e "${SSHD_CONFIG}" ] ; then
|
|
|
|
eerror "You need an ${SSHD_CONFIG} file to run sshd"
|
2015-02-27 00:58:55 +00:00
|
|
|
eerror "There is a sample file in /usr/share/doc/openssh"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ssh-keygen -A || return 1
|
|
|
|
|
|
|
|
[ "${SSHD_PIDFILE}" != "/var/run/sshd.pid" ] \
|
|
|
|
&& SSHD_OPTS="${SSHD_OPTS} -o PidFile=${SSHD_PIDFILE}"
|
2015-07-31 00:55:23 +00:00
|
|
|
[ "${SSHD_CONFIG}" != "/etc/ssh/sshd_config" ] \
|
|
|
|
&& SSHD_OPTS="${SSHD_OPTS} -f ${SSHD_CONFIG}"
|
2015-02-27 00:58:55 +00:00
|
|
|
|
|
|
|
"${SSHD_BINARY}" -t ${SSHD_OPTS} || return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
start() {
|
|
|
|
checkconfig || return 1
|
|
|
|
|
|
|
|
ebegin "Starting ${SVCNAME}"
|
|
|
|
start-stop-daemon --start --exec "${SSHD_BINARY}" \
|
|
|
|
--pidfile "${SSHD_PIDFILE}" \
|
|
|
|
-- ${SSHD_OPTS}
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
if [ "${RC_CMD}" = "restart" ] ; then
|
|
|
|
checkconfig || return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ebegin "Stopping ${SVCNAME}"
|
|
|
|
start-stop-daemon --stop --exec "${SSHD_BINARY}" \
|
|
|
|
--pidfile "${SSHD_PIDFILE}" --quiet
|
|
|
|
eend $?
|
|
|
|
}
|
|
|
|
|
|
|
|
reload() {
|
|
|
|
checkconfig || return 1
|
|
|
|
ebegin "Reloading ${SVCNAME}"
|
|
|
|
start-stop-daemon --signal HUP \
|
|
|
|
--exec "${SSHD_BINARY}" --pidfile "${SSHD_PIDFILE}"
|
|
|
|
eend $?
|
|
|
|
}
|