TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How many of us here use cron jobs, and how do you version control them?

1 pointsby sankalp_sansabout 8 years ago
I&#x27;m that guy in my team who obsessively version controls everything. Every config, every byte of change on any system has to go through a version control.<p>For version controlling cron jobs scheduled on our &quot;jobs servers&quot;, I wrote another job that dumps all the cron entries periodically to a git repo using `crontab -l &gt; &#x2F;path&#x2F;to&#x2F;backup; git commit; git push`<p>This seems a bit hacky, but it works. This one time, one of the people in our team did a `crontab -r` instead of a `crontab -e` and we could get back the entire set of cron entries within seconds, thanks to the periodic backups. Any better solutions that come to mind? Maybe something too obvious?

1 comment

db48xabout 8 years ago
Use systemd timers, and keep all of &#x2F;etc in a repository. Or put all the cronjobs or systemd timers (or whatever) into a configuration management system, and check that into version control.