openssh/sshd.init.redhat

50 lines
840 B
Plaintext
Raw Normal View History

1999-10-27 03:42:43 +00:00
#!/bin/bash
1999-10-28 04:03:14 +00:00
# Init file for OpenSSH server daemon
1999-10-27 03:42:43 +00:00
#
# 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
1999-10-27 03:42:43 +00:00
# source function library
. /etc/rc.d/init.d/functions
RETVAL=0
case "$1" in
start)
echo -n "Starting sshd: "
daemon /usr/sbin/sshd
1999-10-27 03:42:43 +00:00
RETVAL=$?
[ $RETVAL -eq 0 ] && touch /var/lock/subsys/sshd
echo
;;
stop)
echo -n "Shutting down sshd: "
1999-10-27 03:42:43 +00:00
killproc sshd
RETVAL=$?
[ $RETVAL -eq 0 ] && rm -f /var/lock/subsys/sshd
echo
;;
restart)
$0 stop
$0 start
RETVAL=$?
;;
status)
status sshd
1999-10-27 03:42:43 +00:00
RETVAL=$?
;;
*)
echo "Usage: sshd {start|stop|restart|status}"
1999-10-27 03:42:43 +00:00
exit 1
esac
exit $RETVAL