#!/bin/ksh

##################################################
# name: Ksshd
# purpose: script that will start or stop the sshd daemon.
##################################################

case "$1" in
start )
	/usr/bin/startsrc -g ssh
	;;
stop )
	/usr/bin/stopsrc -g ssh
	;;
* )
	echo "Usage: $0 (start | stop)"
	exit 1
esac