diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-06-05 19:07:34 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-06-05 19:07:34 -0300 |
commit | 430f9aa00afab4f283660f24b0cdf0cbdba1702f (patch) | |
tree | 5db0fe98cf6de3ef94fa267d33c3ecf5d5ab22f7 /manifests | |
parent | 3a39438229791ed3587102dcce72d0b4ffcd031e (diff) | |
download | puppet-supervisor-430f9aa00afab4f283660f24b0cdf0cbdba1702f.tar.gz puppet-supervisor-430f9aa00afab4f283660f24b0cdf0cbdba1702f.tar.bz2 |
Changes for puppet 4 compatibility
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/app.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/app.pp b/manifests/app.pp index 37c9c28..9ea90f1 100644 --- a/manifests/app.pp +++ b/manifests/app.pp @@ -15,7 +15,7 @@ define supervisor::app ( ensure => present, owner => root, group => root, - mode => 0644, + mode => '0644', content => $source ? { '' => template('supervisor/app.erb'), default => undef, |