I'm trying to use a cronjob to run a ruby script (Using Rails3 runner) with the following Cronjobs:

    #!/bin/bash
    0-59 * * * * echo 'script test'

    # Begin Whenever generated tasks for: test1
    * * * * * /bin/bash -l -c '/home/administrator/test1/script/rails runner /home/administrator/test1/app/create_flag.rb >> /home/administrator/test1/test.log 2>&1'

# End Whenever generated tasks for: test1

test1 is the name of the Rails3 project folder.

the "echo 'script test'" was added as a test, but neither seems to be executing. I'm currently using Ubuntu 10.04 LTS.

Have I written the cronjob incorrectly?

link|improve this question

52% accept rate
You do have crond running, correct? – derobert Jan 21 '11 at 16:50
Yes, i believe the command was $ # crond ? – dpigera Jan 21 '11 at 17:46
feedback

3 Answers

up vote 2 down vote accepted

Crontab file is not a shell script. So you don't need #!/bin/bash at the beginning of the file. Plus, spaces there are suspicious. Try something like this:

SHELL=/bin/bash
MAILTO=administrator@localhost
BASH_ENV=/home/administrator/.bash_profile

* * * * * /home/administrator/test1/script/rails runner /home/administrator/test1/app/create_flag.rb >> /home/administrator/test1/test.log 2>&1'

Plus, make sure you call crontab -e as administrator to edit the crontab file.

link|improve this answer
this worked perfectly! thank-you soo much! – dpigera Jan 21 '11 at 17:41
feedback

Cron does not use your user environment, so it will not have the same path set that you have. This means that you should use absolute paths for commands.

link|improve this answer
feedback

You need to specify the user which runs the commands (you can see the format here. Also the echo will output 'script test' to what? If you want a test try doing a touch on a file, so you can physically see the action of the cron job.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.