Skip to content
Snippets Groups Projects
Select Git revision
  • db1beef202165632f6c35e0ebeb21c6da2ce24fb
  • master default protected
  • spahan-merge
  • spahan
  • v1.8-rc1
  • v1.7
  • v1.6.3
  • v1.6.2
  • v1.6.1
  • v1.6
  • v1.5.1
  • v1.5
  • v1.4a
  • v1.3
  • v1.2
  • v1.1
  • v1.0
17 results

chkcrontab

Kevin Lyda's avatar
Kevin Lyda authored
Limit the travis status icon to just the master branch.
db1beef2
History

chkcrontab

Build status

Crontab linter

chkcrontab is a script to check crontab files like those in /etc/cron.d and /etc/crontab. It tries to catch glaring errors and warn on suspect lines in a crontab file. Some valid lines will generate warnings. Certain silly yet valid crontab lines will generate errors as well.

Run this by doing:

chkcrontab crontab_file

Errors will cause a non-zero exit code. Warnings alone will not.

To see sample output for a bad crontab, run the following:

./chkcrontab ./tests/test_crontab

See the ./tests/test_crontab.disable crontab for how to disable warnings and errors.

Output Description

The output of chkcrontab is described on the CheckCrontab wiki page. A link to it appears in the output if there were any warnings or errors. It also suggests ways to fix the reported issues.

Contributions

Contributions are welcome! Please add unit tests for new features or bug fixes. To run all the unit tests run ./setup test. If you have tox installed, just run tox.

You can review coverage of added tests by running coverage run setup.py test and then running coverage report -m.

Note that tests are run on Travis for all supported python versions whenever the tree on github is pushed to.

The code is available in the following locations:

Pull requests on any of those platforms or emailed patches are fine. Opening issues on github is easiest, but I'll check any of them.

TODO

  • Look for duplicate entries. Puppet sometimes loads up crontabs with dups.
  • Check for backticks. (why?)
  • Make sure MAILTO and PATH are set (perhaps others?).
  • Add tests for command line.

Credits

  • Kevin Lyda: Who got burned one too many times by broken crontabs.