#!/bin/sh

# by Soren Spies (from http://www.techhouse..org/~soren/software)

. /etc/rc.common	# this .'s /etc/hostconfig where you turn SSH on/off

##
# fire up sshd
##

if [ "${SSHSERVER:=-NO-}" = "-YES-" -a -x /usr/sbin/sshd ]; then
    ConsoleMessage "Starting Secure Login Server"
    /usr/sbin/sshd &
fi
