From: Silvio Rhatto Date: Mon, 20 Jun 2016 13:36:35 +0000 (-0300) Subject: Disables unsupported drupal 6 makefiles X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=d7e3455b17c3f89afa535c3a1a0f07cd9f830ec5;p=puppet-drupal.git Disables unsupported drupal 6 makefiles --- diff --git a/manifests/makefiles.pp b/manifests/makefiles.pp index 28f2507..945b231 100644 --- a/manifests/makefiles.pp +++ b/manifests/makefiles.pp @@ -1,7 +1,7 @@ class drupal::makefiles { # Drupal 6 makefile file { "/usr/local/share/drupal/drupal6.make": - ensure => present, + ensure => absent, owner => root, group => root, mode => 644, @@ -21,7 +21,7 @@ class drupal::makefiles { # Drupal 6 theme makefile file { "/usr/local/share/drupal/themes6.make": - ensure => present, + ensure => absent, owner => root, group => root, mode => 644, @@ -46,7 +46,7 @@ class drupal::makefiles { weekday => 4, hour => "02", minute => "30", - ensure => present, + ensure => absent, require => File['/usr/local/sbin/drupal', '/usr/local/share/drupal/drupal6.make', '/usr/local/share/drupal/themes6.make'],