aboutsummaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2011-02-04 19:50:12 -0200
committerSilvio Rhatto <rhatto@riseup.net>2011-02-04 19:50:12 -0200
commitb847a76f9ac52ffac7377f96abe36b78b9edd687 (patch)
tree5a9396b5c96ef38c3d88e28aa796445049a96881 /manifests
parentaab7d17ad1d2f08746f8981d4d69b7ca146d193d (diff)
downloadpuppet-drupal-b847a76f9ac52ffac7377f96abe36b78b9edd687.tar.gz
puppet-drupal-b847a76f9ac52ffac7377f96abe36b78b9edd687.tar.bz2
Drupal 7 makefile
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp12
1 files changed, 11 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 5ddd1c9..176b352 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -41,7 +41,7 @@ class drupal inherits pear {
mode => 755,
}
- # Drupal makefile
+ # Drupal 6 makefile
file { "/usr/local/share/drupal/drupal6.make":
ensure => present,
owner => root,
@@ -50,4 +50,14 @@ class drupal inherits pear {
source => "puppet:///modules/drupal/drupal6.make",
require => File['/usr/local/share/drupal'],
}
+
+ # Drupal 7 makefile
+ file { "/usr/local/share/drupal/drupal7.make":
+ ensure => present,
+ owner => root,
+ group => root,
+ mode => 644,
+ source => "puppet:///modules/drupal/drupal7.make",
+ require => File['/usr/local/share/drupal'],
+ }
}