diff --git a/cronie.changes b/cronie.changes index ff5ffe5..1a682bd 100644 --- a/cronie.changes +++ b/cronie.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Tue Jun 23 10:38:53 UTC 2020 - Ismail Dönmez + +- Add an example job definition to sample.root + ------------------------------------------------------------------- Tue Dec 3 17:05:04 UTC 2019 - Malte Kraus diff --git a/cronie.spec b/cronie.spec index 525f0b6..57d1443 100644 --- a/cronie.spec +++ b/cronie.spec @@ -1,7 +1,7 @@ # # spec file for package cronie # -# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed diff --git a/sample.root b/sample.root index 7c7407b..52a95b5 100644 --- a/sample.root +++ b/sample.root @@ -3,6 +3,14 @@ PATH=/usr/bin:/usr/sbin:/sbin:/bin:/usr/lib/news/bin MAILTO=root # # check scripts in cron.hourly, cron.daily, cron.weekly, and cron.monthly -# + +# Example of job definition: +# .---------------- minute (0 - 59) +# | .------------- hour (0 - 23) +# | | .---------- day of month (1 - 31) +# | | | .------- month (1 - 12) OR jan,feb,mar,apr ... +# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat +# | | | | | +# * * * * * user-name command to be executed -*/15 * * * * root test -x /usr/lib/cron/run-crons && /usr/lib/cron/run-crons >/dev/null 2>&1