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'],
+ }
}