#!/bin/ksh

daemon="/usr/local/bin/spiped"
daemon_flags="-D -d -s '[0.0.0.0]:8022' -t '[127.0.0.1]:22' -k /etc/spiped/spiped.key -p /var/run/spiped/spiped.pid"
daemon_user="_spiped"

. /etc/rc.d/rc.subr

pexp="${daemon} .*"
rc_reload=NO

rc_pre() {
	install -d -o _spiped /var/run/spiped
	if [[ ! -f /etc/spiped/spiped.key ]]; then
		dd if=/dev/urandom bs=32 count=1 of=/etc/spiped/spiped.key
	fi
}

rc_cmd $1
