diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-25 17:05:50 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-25 17:05:50 -0300 |
commit | 338c33de61aac06143e10942ac178e405fe673b0 (patch) | |
tree | 24b533d8ccea35dba29666f29d93fbd59282ef6f | |
parent | cc0fdd50cd95c62f9f1d24c57f041f349301a7cf (diff) | |
download | puppet-websites-338c33de61aac06143e10942ac178e405fe673b0.tar.gz puppet-websites-338c33de61aac06143e10942ac178e405fe673b0.tar.bz2 |
Adds allow_override param into images website
-rw-r--r-- | manifests/init.pp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 1ff5869..b6103d6 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -1,7 +1,8 @@ class websites inherits websites::setup { apache::site { "images": - docroot => "${apache::www_folder}/images", - mpm => false, - tag => 'all', + docroot => "${apache::www_folder}/images", + allow_override => 'All', + mpm => false, + tag => 'all', } } |