diff options
author | Jan Dittberner <jandd@cacert.org> | 2017-08-26 18:33:58 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2017-08-26 18:33:58 +0200 |
commit | bc85d45ec3501c4ce566512ec11f8197bd942a15 (patch) | |
tree | 79184b8c0b6d7956b925351fe10e4768739bd470 | |
parent | bc40d81b5062665142744a78069528308fbe7bbf (diff) | |
download | cacert-puppet-bc85d45ec3501c4ce566512ec11f8197bd942a15.tar.gz cacert-puppet-bc85d45ec3501c4ce566512ec11f8197bd942a15.tar.xz cacert-puppet-bc85d45ec3501c4ce566512ec11f8197bd942a15.zip |
Fix puppet-lint warnings
-rw-r--r-- | sitemodules/profiles/manifests/squid.pp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sitemodules/profiles/manifests/squid.pp b/sitemodules/profiles/manifests/squid.pp index 193d4cf..54d26fb 100644 --- a/sitemodules/profiles/manifests/squid.pp +++ b/sitemodules/profiles/manifests/squid.pp @@ -43,9 +43,13 @@ class profiles::squid ( owner => 'root', group => 'root', mode => '0644', - content => epp('profiles/squid/squid.conf.epp', - {'acls' => $acls, 'http_access' => $http_access} - ), + content => epp( + 'profiles/squid/squid.conf.epp', + { + 'acls' => $acls, + 'http_access' => $http_access + } + ), require => Package['squid'], notify => Service['squid'], } |