#!/bin/sh
# Start the secure connection daemon sshd.

PATH=/sbin:/usr/sbin:/bin:/usr/bin

[ -x /usr/sbin/sshd ] || exit 0
echo $0

case "$1" in
    start)
	start-stop-daemon -S -q -x /usr/sbin/sshd
	;;
    stop)
	start-stop-daemon -K -q -x /usr/sbin/sshd
	;;
    *)
	echo "Usage: $0 {start|stop}"
	exit 1
	;;
esac
exit 0
