Question

How do people deploy/version control cronjobs to production? I'm more curious about conventions/standards people use than any particular solution, but I happen to be using git for revision control, and the cronjob is running a python/django script.

Was it helpful?

Solution

If you are using Fabric for deploment you could add a function that edits your crontab.

def add_cronjob():
    run('crontab -l > /tmp/crondump')             
    run('echo "@daily /path/to/dostuff.sh 2> /dev/null" >> /tmp/crondump')
    run('crontab /tmp/crondump')

This would append a job to your crontab (disclaimer: totally untested and not very idempotent).

  1. Save the crontab to a tempfile.

  2. Append a line to the tmpfile.

  3. Write the crontab back.

This is propably not exactly what you want to do but along those lines you could think about checking the crontab into git and overwrite it on the server with every deploy. (if there's a dedicated user for your project.)

OTHER TIPS

Using Fabric, I prefer to keep a pristine version of my crontab locally, that way I know exactly what is on production and can easily edit entries in addition to adding them.

The fabric script I use looks something like this (some code redacted e.g. taking care of backups):

def deploy_crontab():
    put('crontab', '/tmp/crontab')
    sudo('crontab < /tmp/crontab')

You can also take a look at:

http://django-fab-deploy.readthedocs.org/en/0.7.5/_modules/fab_deploy/crontab.html#crontab_update

django-fab-deploy module has a number of convenient scripts including crontab_set and crontab_update

You can probably use something like CFEngine/Chef for deployment (it can deploy everything - including cron jobs)

However, if you ask this question - it could be that you have many production servers each running large number of scheduled jobs. If this is the case, you probably want a tool that can not only deploy jobs, but also track success failure, allow you to easily look at logs from the last run, run statistics, allow you to easily change the schedule for many jobs and servers at once (due to planned maintenance...) etc.

I use a commercial tool called "UC4". I don't really recommend it, so I hope you can find a better program that can solve the same problem. I'm just saying that administration of jobs doesn't end when you deploy them.

There are really 3 options of manually deploying a crontab if you cannot connect your system up to a configuration management system like cfengine/puppet.

You could simply use crontab -u user -e but you run the risk of someone having an error in their copy/paste.

You could also copy the file into the cron directory but there is no syntax checking for the file and in linux you must run touch /var/spool/cron in order for crond to pickup the changes.

Note Everyone will forget the touch command at some point.

In my experience this method is my favorite manual way of deploying a crontab.

diff /var/spool/cron/<user> /var/tmp/<user>.new
crontab -u <user> /var/tmp/<user>.new

I think the method I mentioned above is the best because you don't run the risk of copy/paste errors which helps you maintain consistency with your version controlled file. It performs syntax checking of the cron tasks inside of the file, and you won't need to perform the touch command as you would if you were to simply copy the file.

If you're using Django, take a look at the jobs system from django-command-extensions.

The benefits are that you can keep your jobs inside your project structure, with version control, write everything in Python and configure crontab only once.

I use Buildout to manage my Django projects. With Buildout, I use z3c.recipe.usercrontab to install cron jobs in deploy or update.

Having your project under version control, including your crontab.txt, is what I prefer. Then, with Fabric, it is as simple as this:

@task
def crontab():
    run('crontab deployment/crontab.txt')

This will install the contents of deployment/crontab.txt to the crontab of the user you connect to the server. If you dont have your complete project on the server, you'd want to put the crontab file first.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top