#!/sbin/sh
#
# /etc/init.d/sshd - Start/Stop the `sshd' daemon
#

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
