summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2009-12-25 10:54:11 -0200
committerSilvio Rhatto <rhatto@riseup.net>2009-12-25 10:54:11 -0200
commit0fa18be6e7f63e256285978aad6e09c7313cec74 (patch)
treedfd674919bcb668c60074f11985e3d79ac7e5155 /manifests
parent2e8c16513040781f352a0e28d7462aba64cbe195 (diff)
downloadpuppet-apache-0fa18be6e7f63e256285978aad6e09c7313cec74.tar.gz
puppet-apache-0fa18be6e7f63e256285978aad6e09c7313cec74.tar.bz2
Block fix (2)
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 4d02b40..af8736d 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -91,7 +91,7 @@ class apache {
false: {
file { "${apache2_sites}-available/$title":
ensure => $ensure,
- source => $source,
+ content => template('apache/site.erb'),
owner => root,
group => root,
mode => 0644,
@@ -102,7 +102,7 @@ class apache {
default: {
file { "${apache2_sites}-available/$title":
ensure => $ensure,
- content => template('apache/site.erb'),
+ source => $source,
owner => root,
group => root,
mode => 0644,