diff options
Diffstat (limited to 'manifests/init.pp')
-rw-r--r-- | manifests/init.pp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index ceeea07..5333d9b 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -42,12 +42,19 @@ class drupal inherits pear { } # Drupal makefile + # TODO: remove in the long run file { "/usr/share/drupal/drupal.make": + ensure => absent, + require => File['/usr/local/share/drupal'], + } + + # Drupal makefile + file { "/usr/share/drupal/drupal6.make": ensure => present, owner => root, group => root, mode => 755, - source => "puppet:///modules/drupal/drupal.make", + source => "puppet:///modules/drupal/drupal6.make", require => File['/usr/local/share/drupal'], } } |