Hi all,
I have had the lights-on / lights-off cron job running for a few months now (thanks Merlin !) but wanted to change it a little ...
I had it so that it turned on the lights at 17:00 every day, and turned them off at 00:00.
It also sends a WOL signal to my server at 17:30
But what I would like to change it to, is :
Turn on at 17:00 Mon - Friday .... turn off at 00:00
Turn on at 9:00 Sat - Sun .... turn off at 00:00
So after reading a bit more about cron, I came up with the following :
#!/bin/sh
cru a lightsoff "0 00 * * * /jffs/scripts/ledsoff.sh"
cru a lightson "00 17 * * 1-5 /jffs/scripts/ledson.sh"
cru a lightson "00 09 * * sat,sun /jffs/scripts/ledson.sh"
cru a WOL "30 17 * * * /usr/bin/ether-wake -b -i br0 xx:xx:xx:xx:xx:21"
But .. this seems to have broken it all, as now the lights are not coming on ever ! - btw as I type this it's 18:00 on the Sunday, so i'm not sure what it will do tomorrow !
NB I originally had 6,0 in the part for the weekend but as that didn't work,I changed to sat,sun.
I have rebooted each time before anyone asks
Please can some one help me !! I assume I have the format or syntax wrong, but i'm no expert in Unix commands.
Many thanks
Damob
I have had the lights-on / lights-off cron job running for a few months now (thanks Merlin !) but wanted to change it a little ...
I had it so that it turned on the lights at 17:00 every day, and turned them off at 00:00.
It also sends a WOL signal to my server at 17:30
But what I would like to change it to, is :
Turn on at 17:00 Mon - Friday .... turn off at 00:00
Turn on at 9:00 Sat - Sun .... turn off at 00:00
So after reading a bit more about cron, I came up with the following :
#!/bin/sh
cru a lightsoff "0 00 * * * /jffs/scripts/ledsoff.sh"
cru a lightson "00 17 * * 1-5 /jffs/scripts/ledson.sh"
cru a lightson "00 09 * * sat,sun /jffs/scripts/ledson.sh"
cru a WOL "30 17 * * * /usr/bin/ether-wake -b -i br0 xx:xx:xx:xx:xx:21"
But .. this seems to have broken it all, as now the lights are not coming on ever ! - btw as I type this it's 18:00 on the Sunday, so i'm not sure what it will do tomorrow !
NB I originally had 6,0 in the part for the weekend but as that didn't work,I changed to sat,sun.
I have rebooted each time before anyone asks
Please can some one help me !! I assume I have the format or syntax wrong, but i'm no expert in Unix commands.
Many thanks
Damob