aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-06-20 10:36:35 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-06-20 10:36:35 -0300
commitd7e3455b17c3f89afa535c3a1a0f07cd9f830ec5 (patch)
treecb9c60247ba7de2618a6c4e8c99f34a909e6a902
parentdca0a9a369f9f68a1482448b13cb92b1a1e5f648 (diff)
downloadpuppet-drupal-d7e3455b17c3f89afa535c3a1a0f07cd9f830ec5.tar.gz
puppet-drupal-d7e3455b17c3f89afa535c3a1a0f07cd9f830ec5.tar.bz2
Disables unsupported drupal 6 makefiles
-rw-r--r--manifests/makefiles.pp6
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'],