From 898c206fa5e5ee8dfc3c04b9105d6c393432e08f Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 3 Feb 2012 17:14:02 -0200 Subject: Managing theme makefiles --- manifests/init.pp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/manifests/init.pp b/manifests/init.pp index aa5578d..2ae4101 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -64,4 +64,24 @@ class drupal inherits pear { source => "puppet:///modules/drupal/drupal7.make", require => File['/usr/local/share/drupal'], } + + # Drupal 6 theme makefile + file { "/usr/local/share/drupal/theme6.make": + ensure => present, + owner => root, + group => root, + mode => 644, + source => "puppet:///modules/drupal/theme6.make", + require => File['/usr/local/share/drupal'], + } + + # Drupal 7 theme makefile + file { "/usr/local/share/drupal/theme7.make": + ensure => present, + owner => root, + group => root, + mode => 644, + source => "puppet:///modules/drupal/theme7.make", + require => File['/usr/local/share/drupal'], + } } -- cgit v1.2.3