From: Silvio Rhatto Date: Fri, 25 Dec 2009 12:54:11 +0000 (-0200) Subject: Block fix (2) X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0fa18be6e7f63e256285978aad6e09c7313cec74;p=puppet-apache.git Block fix (2) --- 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,