Defined Type: cron::job::monthly
- Defined in:
- manifests/job/monthly.pp
Overview
Manage weekly cron jobs.
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'manifests/job/monthly.pp', line 9
define cron::job::monthly (
Cron::Command $command,
Cron::Ensure $ensure = present,
Cron::Minute $minute = 0,
Cron::Hour $hour = 0,
Cron::Monthday $monthday = 1,
Cron::User $user = 'root',
) {
cron::job { $title:
ensure => $ensure,
command => $command,
minute => $minute,
hour => $hour,
monthday => $monthday,
month => '*',
weekday => '*',
user => $user,
}
}
|