aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-02-03 17:21:16 -0200
committerSilvio Rhatto <rhatto@riseup.net>2012-02-03 17:21:16 -0200
commit2ed9b368bf07789bb5c537ddbe863998ff91e8a9 (patch)
treeddbde6ab6b5f04dc2689a6eb3adaf931036057c0
parent898c206fa5e5ee8dfc3c04b9105d6c393432e08f (diff)
downloadpuppet-drupal-2ed9b368bf07789bb5c537ddbe863998ff91e8a9.tar.gz
puppet-drupal-2ed9b368bf07789bb5c537ddbe863998ff91e8a9.tar.bz2
Minor fix
-rw-r--r--manifests/init.pp8
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 2ae4101..7613693 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -66,22 +66,22 @@ class drupal inherits pear {
}
# Drupal 6 theme makefile
- file { "/usr/local/share/drupal/theme6.make":
+ file { "/usr/local/share/drupal/themes6.make":
ensure => present,
owner => root,
group => root,
mode => 644,
- source => "puppet:///modules/drupal/theme6.make",
+ source => "puppet:///modules/drupal/themes6.make",
require => File['/usr/local/share/drupal'],
}
# Drupal 7 theme makefile
- file { "/usr/local/share/drupal/theme7.make":
+ file { "/usr/local/share/drupal/themes7.make":
ensure => present,
owner => root,
group => root,
mode => 644,
- source => "puppet:///modules/drupal/theme7.make",
+ source => "puppet:///modules/drupal/themes7.make",
require => File['/usr/local/share/drupal'],
}
}