summaryrefslogtreecommitdiff
path: root/opensshd.init
blob: 40cc92b86994dea082704039198e3a810959061d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/bash

# Init file for OpenSSH server daemon
#
# chkconfig: 2345 55 25
# description: OpenSSH server daemon
#
# processname: sshd
# config: /etc/ssh/ssh_host_key
# config: /etc/ssh/ssh_host_key.pub
# config: /etc/ssh/ssh_random_seed
# config: /etc/ssh/sshd_config
# pidfile: /var/run/sshd.pid

# source function library
. /etc/rc.d/init.d/functions

RETVAL=0

case "$1" in
  start)
	echo -n "Starting sshd: "
        daemon /usr/sbin/sshd
	RETVAL=$?
	[ $RETVAL -eq 0 ] && touch /var/lock/subsys/sshd
	echo
	;;
  stop)
	echo -n "Shutting down sshd: "
	killproc sshd
	RETVAL=$?
	[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd
	echo
	;;
  restart)
        $0 stop
        $0 start
	RETVAL=$?
        ;;
  status)
        status sshd
	RETVAL=$?
        ;;
  *)
	echo "Usage: sshd {start|stop|restart|status}"
	exit 1
esac

exit $RETVAL