#!/bin/sh
# Copyright 2011 Paul Parsons
# Distributed under the terms of the GNU General Public License v3 or later

case $1 in
"start")
	daemon --start --label=$0 /sbin/sulogin --port=ttyv0
	;;
"stop")
	daemon --stop --label=$0 --signal=HUP
	;;
esac

exit 0
