diff options
author | mh <mh@immerda.ch> | 2008-12-30 00:13:34 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-12-30 00:13:34 +0000 |
commit | 581fb04cc97743c68bde8407c46caf4e0eddbba5 (patch) | |
tree | 05ab03af7b64d54d42cd81074fe1c15456cd0933 | |
parent | fd2ed55bb5ac75e15da78900335929e4417802d9 (diff) |
crons have to end with a new line
-rw-r--r-- | manifests/puppetmaster/checklastrun.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster/checklastrun.pp b/manifests/puppetmaster/checklastrun.pp index 1c70f56..cbc3822 100644 --- a/manifests/puppetmaster/checklastrun.pp +++ b/manifests/puppetmaster/checklastrun.pp @@ -6,7 +6,7 @@ class puppet::puppetmaster::checklastrun { 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\n", require => File['/opt/bin/puppetlast'], owner => root, group => 0, mode => 0644; } |