From 00d529affa1de72b955e0552a37592124ed73892c8506dd92342269c93650fce Mon Sep 17 00:00:00 2001 From: Kristyna Streitova Date: Tue, 23 Jun 2020 16:53:55 +0000 Subject: [PATCH] Accepting request 816556 from home:namtrac:branches:Base:System - Add an example job definition to sample.root OBS-URL: https://build.opensuse.org/request/show/816556 OBS-URL: https://build.opensuse.org/package/show/Base:System/cronie?expand=0&rev=189 --- cronie.changes | 5 +++++ cronie.spec | 2 +- sample.root | 10 +++++++++- 3 files changed, 15 insertions(+), 2 deletions(-) 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