diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-26 17:12:03 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-26 17:12:03 -0200 |
commit | 608a27facad552f5545b2806bf970ddc8b1b78c1 (patch) | |
tree | f02dbd55b665aa106868033adfe33778cbe7621a | |
parent | 0fa18be6e7f63e256285978aad6e09c7313cec74 (diff) | |
download | puppet-apache-608a27facad552f5545b2806bf970ddc8b1b78c1.tar.gz puppet-apache-608a27facad552f5545b2806bf970ddc8b1b78c1.tar.bz2 |
Trying to fix a case issue
-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 af8736d..70f6cc2 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -85,10 +85,10 @@ class apache { define site($ensure = present, $docroot = false, $redirect = false, $redirect_match = false, $protocol = 'http', $server_alias = false, $use = false, $ticket = false, - $source = false) { + $source = '') { case $source { - false: { + '': { file { "${apache2_sites}-available/$title": ensure => $ensure, content => template('apache/site.erb'), |