i figured out how to activate Cron-Tabs "properly". Normally after a reboot the crontab is not loaded automatically. That´s a little bit annoying. The Solution for me was the following.
Put this 2 lines at the start of the S99user-script:
- Code: Select all
sleep 120
crontab -u root /conf/root
Before this could work, create an file named "root" in the /conf Directory
- Code: Select all
touch /conf/root
After that:
- Code: Select all
nano /conf/root
That is my content of "root" for example:
- Code: Select all
# min hour mday month wday command
*/10 * * * * /apps/downloadd/bin/ddconsole --host 127.0.0.1 --port 56789 --command "pkg activate 0,1,2,3,4,5,6,7,8,9"
*/1 * * * * echo power led off >> /proc/led
*/1 * * * * echo status led off >> /proc/led
*/1 * * * * sh /conf/foldercheck
Cronjobs are now loaded automatically and all is fine.




