Results 1 to 2 of 2
I've got a couple of scripts that work flawlessly when I run them manually. However, I can't seem to get them to work as cron jobs. I've added the following ...
- 06-07-2009 #1Just Joined!
- Join Date
- Jun 2009
- Posts
- 4
Can't get cron jobs running
I've got a couple of scripts that work flawlessly when I run them manually. However, I can't seem to get them to work as cron jobs. I've added the following cron jobs to the /etc/cron.d/ directory on my Netgear ReadyNAS NV+:
/etc/cron.d/import_torrents/etc/cron.d/rss_scriptCode:#55 * * * * root /usr/local/bin/import_torrents &> /dev/null
I've tried starting and restarting cron:Code:#50 * * * * root /usr/local/bin/rss_script &> /dev/null
Code:/etc/init.d/cron start
I even tried to install rcconf via apt-get, but couldn't get it to run.Code:/etc/init.d/cron restart
Is there something wrong with the way I've set up these cron jobs?
- 06-10-2009 #2
Hi
To get the cron jobs to run remove the "#" from the beginning.
Hope this helpsCode:55 * * * * root /usr/local/bin/import_torrents &> /dev/null 50 * * * * root /usr/local/bin/rss_script &> /dev/null
Tuxknight


Reply With Quote
