#!/bin/sh
### BEGIN INIT INFO
# Provides:						reboot-message
# Required-Start:
# Required-Stop:
# Default-Start:
# Default-Stop:				6
# Short-Description:	Rebooting clock message
### END INIT INFO

case "$1" in
  start)
    ;;
  stop)
#TIMECLOCK 		/usr/local/bin/sendchild "Clock Has Stopped." "Rebooting Now." "" ""
#JOBCLOCK 		/usr/local/bin/sendchild -l 16 "Clock Stopped." "Rebooting Now." "" ""
		/usr/local/bin/sendchild "Clock Has Stopped." "Rebooting Now." ""
    ;;
  *)
    echo "Usage: /etc/init.d/reboot-message {start|stop}"
    exit 1
    ;;
esac

exit 0
