diff options
author | Micah Anderson <micah@riseup.net> | 2012-07-16 14:17:08 -0400 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2012-07-16 14:17:08 -0400 |
commit | 2a83aea970a8348fedeee2109d6d530a7e73a39b (patch) | |
tree | 2825ae83a981613c37fdea0929ffa63c71f28b40 /manifests | |
parent | 0e6eab4d0c31f358bdca76eed7001846a9afae4c (diff) |
we must fully qualify paths to execs
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/puppetmaster/linux.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/puppetmaster/linux.pp b/manifests/puppetmaster/linux.pp index a5098cd..ebf183b 100644 --- a/manifests/puppetmaster/linux.pp +++ b/manifests/puppetmaster/linux.pp @@ -3,7 +3,7 @@ class puppet::puppetmaster::linux inherits puppet::linux { if $puppetmaster_mode == 'passenger' { exec { 'notify_passenger_puppetmaster': refreshonly => true, - command => 'touch /etc/puppet/rack/tmp/restart.txt && sleep 1 && rm /etc/puppet/rack/tmp/restart.txt', + command => '/usr/bin/touch /etc/puppet/rack/tmp/restart.txt && sleep 1 && /bin/rm /etc/puppet/rack/tmp/restart.txt', } } else { service { 'puppetmaster': |