Crontab Rasplex 0.6

Hi,

 

I am trying to create a cron to switch between 2 hyperion profiles based on time of the day. I haven't got the chance to test with the 0.5.1 release, only with the 0.6.0 (PI2).

The script is working fine while I run it manually.

Also cron is working fine if I only modify the entry for minutes. As soon as I change the * value for hours, cron fails to start.

Does anyone have a Idea?

 

ex.

settings that work:

9 * * * * /storage/.config/hyperionswitch_cron.sh   -  will start the cron at 9th minute of every hour, as supposed to
* * * * * /storage/.config/hyperionswitch_cron.sh   - will start the cronjob every minute
settings that failed to work
* 7 * * * /storage/.config/hyperionswitch_cron.sh - does not run at every minute at 7am
9 7 * * * /storage/.config/hyperionswitch_cron.sh  -  does not run at 7:09 am
9 7,18 * * * /storage/.config/hyperionswitch_cron.sh   - does not run at 7:09 and 18:09
 

I also didn't find the cron log file.

 

Thanks