Crontab revision control? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:42:53Zhttp://stackoverflow.com/feeds/question/317878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/317878/crontab-revision-control2Crontab revision control?John Zwinck2008-11-25T16:08:24Z2008-11-25T16:40:59Z
<p>I've got a few dozen Linux machines running <code>cron</code> and I'd like to put the crontabs in some sort of revision control system. For source control I use Mercurial (<code>hg</code>), so that'd be ideal, but if there's some other system that is better suited to this task I'd consider it.</p>
<p>One aspect which is specific to my situation is that all the crontabs belong to a common user (not a real person, but a placeholder "services" login). I'd like the revision history to include the actual author of each change, rather than the special account where the cron jobs actually run.</p>
http://stackoverflow.com/questions/317878/crontab-revision-control/317888#3178881Answer by Daniel Bungert for Crontab revision control?Daniel Bungert2008-11-25T16:10:41Z2008-11-25T16:10:41Z<p><a href="http://joey.kitenet.net/code/etckeeper/" rel="nofollow">http://joey.kitenet.net/code/etckeeper/</a> ?</p>
http://stackoverflow.com/questions/317878/crontab-revision-control/317907#3179071Answer by bradheintz for Crontab revision control?bradheintz2008-11-25T16:14:22Z2008-11-25T16:14:22Z<p>crontab -l dumps your crontab to standard output, which you could redirect to a file. You could have a job (in cron, naturally) to redirect this to a file which is then diffed, and pushed to source control as necessary.</p>
http://stackoverflow.com/questions/317878/crontab-revision-control/318037#3180370Answer by Aaron Digulla for Crontab revision control?Aaron Digulla2008-11-25T16:40:59Z2008-11-25T16:40:59Z<p>If the linux system follows the LFS (linux filesystem standard, IIRC), then /etc should only contain config files. I had pretty good experience by importing the whole of /etc into CVS. </p>
<p>The only problem is that only root could commit changes, so it was a bit hard to see who broke something. This can be solved by assigning every admin a 3 letter short name and setting up the rule that each commit must start with this name.</p>