diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-09-26 15:22:30 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-09-26 15:22:30 -0300 |
commit | 0b642497df55fd30f6c3dc92c74f0f583f1e73b4 (patch) | |
tree | bb0970f3d6646f8252408265f3c1c08aa606cc91 | |
parent | 2b19d3657216262cb179d2aa5609f207f03bd768 (diff) | |
download | puppet-infinoted-0b642497df55fd30f6c3dc92c74f0f583f1e73b4.tar.gz puppet-infinoted-0b642497df55fd30f6c3dc92c74f0f583f1e73b4.tar.bz2 |
Qualify exec
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index a9a8853..fab766d 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -58,7 +58,7 @@ class infinoted( # Generate keys # This exec will launch the server but not daemonize, so we fork it to the background exec { 'infinoted-gen-keys': - command => 'infinoted --create-key --create-certificate -k /var/lib/infinoted/.certs/infinoted.key -c /var/lib/infinoted/.certs/infinoted.cert &', + command => '/usr/bin/infinoted --create-key --create-certificate -k /var/lib/infinoted/.certs/infinoted.key -c /var/lib/infinoted/.certs/infinoted.cert &', creates => '/var/lib/infinoted/.certs/infinoted.key', require => File['/var/lib/infinoted/.config/infinoted.conf'], } |