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

case $1 in
"start")
	/sbin/rc sysinit
	/sbin/rc boot
	/sbin/rc default
	;;
"stop")
	/sbin/rc shutdown
	;;
esac

exit 0
