diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-25 10:54:11 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-25 10:54:11 -0200 |
commit | 0fa18be6e7f63e256285978aad6e09c7313cec74 (patch) | |
tree | dfd674919bcb668c60074f11985e3d79ac7e5155 | |
parent | 2e8c16513040781f352a0e28d7462aba64cbe195 (diff) | |
download | puppet-apache-0fa18be6e7f63e256285978aad6e09c7313cec74.tar.gz puppet-apache-0fa18be6e7f63e256285978aad6e09c7313cec74.tar.bz2 |
Block fix (2)
-rw-r--r-- | manifests/init.pp | 4 |
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, |