diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-20 10:36:35 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-20 10:36:35 -0300 |
commit | d7e3455b17c3f89afa535c3a1a0f07cd9f830ec5 (patch) | |
tree | cb9c60247ba7de2618a6c4e8c99f34a909e6a902 /manifests | |
parent | dca0a9a369f9f68a1482448b13cb92b1a1e5f648 (diff) | |
download | puppet-drupal-d7e3455b17c3f89afa535c3a1a0f07cd9f830ec5.tar.gz puppet-drupal-d7e3455b17c3f89afa535c3a1a0f07cd9f830ec5.tar.bz2 |
Disables unsupported drupal 6 makefiles
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/makefiles.pp | 6 |
1 files changed, 3 insertions, 3 deletions
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'], |