vote up 0 vote down star

I would like to include cron tasks in my Capistrano deployment files instead of using the following command to manually edit the crontab file:

crontab -e [username]

Is there a script I could use within the Capistrano run command to set the contents of the crontab?

flag

3 Answers

vote up 2 vote down check

On my linux box

crontab -u userName -l > fileName

lists the crontab file for userName in fileName.

Then I would use a ruby (or another language) script to update the file.

Finally I would use

crontab -u userName fileName

to update the crontab for userName

link|flag
Thanks for posting this solution. I think I will try this. – sbtodd Oct 22 at 3:35
vote up 2 vote down

Check out the Whenever gem -- this may be stretching beyond what you're intending to do, but it uses very simple (Ruby) syntax and makes it dead simple to setup cron jobs within a capistrano deployment script.

link|flag
Thanks. That is a neat looking gem. – sbtodd Oct 22 at 3:34
It's fantastic -- I am using it in production on several app deployments. – bensie Oct 22 at 5:10
vote up 0 vote down

Why not include a crontab that can be installed to /etc/cron.d?

link|flag

Your Answer

Get an OpenID
or

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