diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-05 22:40:52 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-05 22:40:52 -0300 |
commit | 6e700c86796f522b625c6f10e9032a593a588ebe (patch) | |
tree | e56d8e7e4ee0a8d2c6832cf6e70f492b7d07dc9c | |
parent | ff606678e71b8f1ef3d8b602ad3c9ddfe5e31027 (diff) | |
download | puppet-infinoted-6e700c86796f522b625c6f10e9032a593a588ebe.tar.gz puppet-infinoted-6e700c86796f522b625c6f10e9032a593a588ebe.tar.bz2 |
Fixing resource reference
-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 8a24889..b1e465a 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -58,7 +58,7 @@ class infinoted( exec { 'infinoted-gen-keys': command => 'infinoted --create-key --create-certificate -k /var/lib/infinoted/.certs/cert.key -c /var/lib/infinoted/.certs/cert.cert &', creates => '/var/lib/infinoted/.certs/cert.key', - require => '/var/lib/infinoted/.config/infinoted.conf', + require => File['/var/lib/infinoted/.config/infinoted.conf'], } supervisor::app { 'infinoted': |