diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-25 00:59:26 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-25 00:59:26 -0200 |
commit | 77d098388b06d56af601ef3dbc3c0068e24adb69 (patch) | |
tree | b236ebf64a26b1f2d5324f1877c726d1bea1d978 /manifests | |
parent | 341a21e01660c4856898c8a7131dce05763e8c6b (diff) | |
download | puppet-apache-77d098388b06d56af601ef3dbc3c0068e24adb69.tar.gz puppet-apache-77d098388b06d56af601ef3dbc3c0068e24adb69.tar.bz2 |
Fixing conditional
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 4cdbe02..cf67556 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -87,7 +87,7 @@ class apache { $server_alias = false, $use = false, $ticket = false, $source = false) { - if $source { + if $source != false { file { "${apache2_sites}-available/$title": ensure => $ensure, source => $source, |