]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/initscripts/init.d/sshd
Made the gnump3d working out of the box...
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / sshd
CommitLineData
23104841
MT
1#!/bin/sh
2# Begin $rc_base/init.d/sshd
3
4# Based on sysklogd script from LFS-3.1 and earlier.
5# Rewritten by Gerard Beekmans - gerard@linuxfromscratch.org
6
7#$LastChangedBy: bdubbs $
8#$Date: 2006-04-15 17:34:16 -0500 (Sat, 15 Apr 2006) $
9
10. /etc/sysconfig/rc
11. $rc_functions
12
13case "$1" in
14 start)
b5cf3c75 15 [ -e "/var/ipfire/remote/enablessh" ] || exit 0 # SSH is not enabled
23104841
MT
16 boot_mesg "Starting SSH Server..."
17 # Also prevent ssh from being killed by out of memory conditions
18 loadproc /usr/sbin/sshd
cb5e9c6c 19 sleep 3
23104841
MT
20 echo "-16" >/proc/`cat /var/run/sshd.pid`/oom_adj
21 ;;
22
23 stop)
24 boot_mesg "Stopping SSH Server..."
25 killproc /usr/sbin/sshd
26 ;;
27
28 reload)
29 boot_mesg "Reloading SSH Server..."
30 reloadproc /usr/sbin/sshd
31 ;;
32
33 restart)
34 $0 stop
35 sleep 1
36 $0 start
37 ;;
38
39 status)
40 statusproc /usr/sbin/sshd
41 ;;
42
43 *)
44 echo "Usage: $0 {start|stop|reload|restart|status}"
45 exit 1
46 ;;
47esac
48
49# End $rc_base/init.d/sshd