summaryrefslogtreecommitdiff
path: root/manifests/puppetmaster/checklastrun.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-12-27 21:41:39 +0000
committermh <mh@immerda.ch>2008-12-27 21:41:39 +0000
commitfd2ed55bb5ac75e15da78900335929e4417802d9 (patch)
tree656da9ebb363df665af7c21508a84e94f0892ffb /manifests/puppetmaster/checklastrun.pp
parent361c9a0aebdd3f5cdcd10781bcb4d472b5333389 (diff)
syntax check
Diffstat (limited to 'manifests/puppetmaster/checklastrun.pp')
-rw-r--r--manifests/puppetmaster/checklastrun.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp
index b28012c..1c70f56 100644
--- a/manifests/puppetmaster/checklastrun.pp
+++ b/manifests/puppetmaster/checklastrun.pp
@@ -3,10 +3,10 @@ class puppet::puppetmaster::checklastrun {
file{'/opt/bin/puppetlast':
source => [ "puppet://$server/files/puppet/master/puppetlast",
"puppet://$server/puppet/master/puppetlast"],
- owner => root, group => 0, mode =0700;
+ owner => root, group => 0, mode => 0700;
}
file{'/etc/cron.d/puppetlast.cron':
- content => "40 10,22 * * * root /opt/bin/puppetlast"
+ content => "40 10,22 * * * root /opt/bin/puppetlast",
require => File['/opt/bin/puppetlast'],
owner => root, group => 0, mode => 0644;
}