summaryrefslogtreecommitdiffstats
path: root/modules/cron
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2020-07-11 02:09:31 -0400
committerJesse Luehrs <doy@tozt.net>2020-07-11 02:09:31 -0400
commit9bef29232c1c7a6bbe644a8fbfe94348374eb51c (patch)
tree6f27ee1f954553f63f3f376841c644ccb58c357d /modules/cron
parent064fe099898269ee232edf7bb9803c86389b8980 (diff)
downloadpuppet-tozt-9bef29232c1c7a6bbe644a8fbfe94348374eb51c.tar.gz
puppet-tozt-9bef29232c1c7a6bbe644a8fbfe94348374eb51c.zip
pass through $content too
Diffstat (limited to 'modules/cron')
-rw-r--r--modules/cron/manifests/job.pp1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/cron/manifests/job.pp b/modules/cron/manifests/job.pp
index 4f39287..0741378 100644
--- a/modules/cron/manifests/job.pp
+++ b/modules/cron/manifests/job.pp
@@ -3,6 +3,7 @@ define cron::job($frequency, $source = undef, $content = undef) {
file { "/etc/cron.${frequency}/${name}":
source => $source,
+ content => $content,
mode => '0755';
}
}