diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2012-02-03 17:14:02 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2012-02-03 17:14:02 -0200 |
commit | 898c206fa5e5ee8dfc3c04b9105d6c393432e08f (patch) | |
tree | d4c7586753de0ce17f7f50f27d6cb87344ac6a0c | |
parent | 2e21745992ff334914da167cf79dc3a93b63948d (diff) | |
download | puppet-drupal-898c206fa5e5ee8dfc3c04b9105d6c393432e08f.tar.gz puppet-drupal-898c206fa5e5ee8dfc3c04b9105d6c393432e08f.tar.bz2 |
Managing theme makefiles
-rw-r--r-- | manifests/init.pp | 20 |
1 files changed, 20 insertions, 0 deletions
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'], + } } |