I have a bunch of projects that I push to a server with git and fab. They're a load of Django sites. Some of these sites have cron jobs.
I would like to be in a situation where I can:
Manage the site's cron jobs by editing a file locally and running a fab command (eg
fab save deployas I currently do)Have new jobs get installed remotely (only) and replace any old jobs (I don't want clone jobs each time)
Keep the same highly customisable time settings. Not all my issues can be solved by @hourly.
What's the best way to approach this?
I am aware of How do YOU deploy cron jobs to production? but the focus there seems to be about hacking the cronning into the fabric script and (at least in the answers) there's no consideration that there might be more than one project that needs cron jobs per user.
I'm after something that is stored in the VCS (I don't push my fabfile to git - and it's shared between all my projects) that will work alongside other jobs in crontab. It's no good if ProjectA and ProjectB overwrite each other's jobs each time I deploy.