diff options
author | mh <mh@immerda.ch> | 2008-12-27 17:01:00 +0000 |
---|---|---|
committer | mh <mh@immerda.ch> | 2008-12-27 17:01:00 +0000 |
commit | 7e441bf983263011763fccdcc6307e2805ccf1f0 (patch) | |
tree | d2c7800b7abb7798400f26c311840aa3ff7934ee | |
parent | 955e5a61cafba272c0d61dd19c9da29a340655f9 (diff) |
fix test cmd
-rw-r--r-- | manifests/cron/base.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/cron/base.pp b/manifests/cron/base.pp index 966aea7..98bb394 100644 --- a/manifests/cron/base.pp +++ b/manifests/cron/base.pp @@ -6,6 +6,6 @@ class puppet::cron::base inherits puppet::base { } exec{'stop_puppet': command => 'kill `cat /var/run/puppet/puppetd.pid`', - onlyif => 'test -f test -f /var/run/puppet/puppetd.pid', + onlyif => 'test -f /var/run/puppet/puppetd.pid', } } |