#!/sbin/sh
#
# /etc/init.d/sshd - Start/Stop the `sshd' daemon
#
# Olivier L'Heureux <lheureux@dice.ucl.ac.be>, 17/7/96

PATH=/usr/bin:/bin
SSHD=/usr/local/sbin/sshd
case $1 in 
'start')
	if [ -f ${SSHD} ]; then
		${SSHD} & 
	fi	
	;;
'stop')
	kill `cat /etc/sshd.pid`
	;;
*)
	echo "usage: /etc/rc2.d/S92sshd { start | stop }"
	;;
esac
