#!/bin/sh /etc/rc.common
START=95

boot() {
	/usr/sbin/schedulereboot.sh add_entries_crond &
	return 0
}

start() {
	stop
	/usr/sbin/schedulereboot.sh add_entries_crond &
}

stop() {
	ps | grep -i schedulereboot.sh | grep -v grep | awk '{print $1}' | xargs kill
	return 0
}

