#!/bin/sh
# chkconfig: 235 99 00
# description: Start or stop the Webmin administration server

case "$1" in
'start')
	/etc/webmin/start
	;;
'stop')
	/etc/webmin/stop
	;;
*)
	echo "Usage: $0 { start | stop }"
	;;
esac
exit 0
