diff options
author | mh <mh@immerda.ch> | 2008-12-27 21:41:39 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-12-27 21:41:39 +0000 |
commit | fd2ed55bb5ac75e15da78900335929e4417802d9 (patch) | |
tree | 656da9ebb363df665af7c21508a84e94f0892ffb | |
parent | 361c9a0aebdd3f5cdcd10781bcb4d472b5333389 (diff) |
syntax check
-rw-r--r-- | manifests/puppetmaster/checklastrun.pp | 4 |
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; } |