diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-10-14 09:29:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-10-14 09:29:55 -0300 |
commit | fb2041733d3ace059b63648aff097ba08ec13eda (patch) | |
tree | 80549445f87021120ec282562eddae549b10fd02 | |
parent | 26cc2360fbf79c4e361de7b59e0c4d00e2d9b201 (diff) | |
download | puppet-drupal-fb2041733d3ace059b63648aff097ba08ec13eda.tar.gz puppet-drupal-fb2041733d3ace059b63648aff097ba08ec13eda.tar.bz2 |
Do not manage /tmp/.htaccess
-rw-r--r-- | manifests/init.pp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index da68b08..a409c86 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -50,13 +50,13 @@ class drupal { } # See https://drupal.org/SA-CORE-2013-003 - file { "/tmp/.htaccess": - ensure => present, - owner => root, - group => root, - mode => 644, - source => "puppet:///modules/drupal/htaccess", - } + #file { "/tmp/.htaccess": + # ensure => present, + # owner => root, + # group => root, + # mode => 644, + # source => "puppet:///modules/drupal/htaccess", + #} # Ensure there's no old, buggy code in drupal farms file { [ '/var/www/data/drupal-6/backup', '/var/www/data/drupal-7/backup' ]: |