Skip to content
Snippets Groups Projects
Commit 4eb007f2 authored by Martin Strbacka's avatar Martin Strbacka
Browse files

notifier: Notifier now checks if delay value exceeds 10 days. Fixed problem...

notifier: Notifier now checks if delay value exceeds 10 days. Fixed problem with overruning days in at command parameter.
parent 625bacba
No related branches found
No related tags found
No related merge requests found
......@@ -56,13 +56,20 @@ create_msmtp_config() {
}
schedule_restart() {
max_delay=10
delay=`uci get user_notify.reboot.delay`
time=`uci get user_notify.reboot.time | tr -d ':'`
if [ $delay -gt $max_delay ]; then
delay=$max_delay
uci set user_notify.reboot.delay=$max_delay
uci commit
fi
curr_time=`date '+%y%m%d'`
wanted_time="$((curr_time + delay))$time"
echo "reboot" | at -t "$wanted_time"
echo "reboot" | at -t $(date +"%y%m%d%H%M" -d "$wanted_time")
echo -e "Zarizeni bude automaticky restartovano v $(date +'%H:%M %d.%m.%Y' -d $wanted_time).\n" >> $1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment