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

case $1 in
"start")
	/etc/init.d/rcS
	/etc/init.d/rc 5
	;;
"stop")
	/etc/init.d/rc 0
	;;
esac

exit 0
