2
# Begin $rc_base/init.d/sshd
4
# Based on sysklogd script from LFS-3.1 and earlier.
5
# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
7
#$LastChangedBy: bdubbs $
8
#$Date: 2006-04-15 17:34:16 -0500 (Sat, 15 Apr 2006) $
15
[ -e "/var/ipfire/remote/enablessh" ] || exit 0 # SSH is not enabled
16
boot_mesg "Starting SSH Server..."
17
# Also prevent ssh from being killed by out of memory conditions
18
loadproc /usr/sbin/sshd
20
echo "-16" >/proc/`cat /var/run/sshd.pid`/oom_adj
24
boot_mesg "Stopping SSH Server..."
25
killproc /usr/sbin/sshd
29
boot_mesg "Reloading SSH Server..."
30
reloadproc /usr/sbin/sshd
40
statusproc /usr/sbin/sshd
44
echo "Usage: $0 {start|stop|reload|restart|status}"
49
# End $rc_base/init.d/sshd