Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > d4cce55485833bf1d72e3c8972a387a3 > files > 15

fcron-3.0.6-2.mga4.x86_64.rpm

# This is a simple example configuration file for fcron.
# You need to have the crontabs package installed for this.
# Or edit the file.
# To install it, run: "fcrontab /etc/fcron.example"

# use /bin/bash to run commands, ignoring what /etc/passwd says
SHELL=/bin/bash

# mail output to root, no matter whose fcrontab this is
MAILTO=root

# we want to use serialize but not bootrun:
!serial(true),b(0)

# Hourly jobs
@ 1h echo "Executing hourly fcron-jobs"
@ 1h run-parts /etc/cron.hourly

# Daily jobs
@ 1d echo "Executing daily fcron-jobs"
@ 1d run-parts /etc/cron.daily

# Weekly jobs
@ 1w echo "Executing weekly fcron-jobs"
@ 1w run-parts /etc/cron.weekly

# Monthly jobs
@ 1m echo "executing monthly fcron-jobs"
@ 1m run-parts /etc/cron.monthly

# run every day at 12:05
5 12 * * * echo "The date is now `date`"