#!/bin/sh
# Version 00.00.02
	now=$(date)
	NAME=$(basename "$0")
	REASON="cron reboot weekly"
	echo "$now $REASON" >> /home/cti/systemstart.log
	echo "{\"source\":\"$NAME\",\"date\":\"$now\",\"reason\":\"$REASON\"}" > /home/cti/rebootinfo.json
	reboot

