summaryrefslogtreecommitdiffstats
path: root/modules/cron/manifests/job.pp
blob: 074137855846c1656e8c7d1d01abec19b5983b4a (plain) (blame)
1
2
3
4
5
6
7
8
9
define cron::job($frequency, $source = undef, $content = undef) {
  require cron

  file { "/etc/cron.${frequency}/${name}":
    source => $source,
    content => $content,
    mode => '0755';
  }
}