diff options
author | Nicolas Vigier <boklm@mageia.org> | 2011-05-19 10:07:12 +0000 |
---|---|---|
committer | Nicolas Vigier <boklm@mageia.org> | 2011-05-19 10:07:12 +0000 |
commit | fa46023d659f122f948164b8d678eea765e3cec0 (patch) | |
tree | c038f3bfaf485c9eff1095092077251e7690e88d /modules | |
parent | 84e857e199a22b5b73a1397f654cdafac5fa7f3b (diff) | |
download | puppet-fa46023d659f122f948164b8d678eea765e3cec0.tar puppet-fa46023d659f122f948164b8d678eea765e3cec0.tar.gz puppet-fa46023d659f122f948164b8d678eea765e3cec0.tar.bz2 puppet-fa46023d659f122f948164b8d678eea765e3cec0.tar.xz puppet-fa46023d659f122f948164b8d678eea765e3cec0.zip |
add vhost parameter in vhost_catalyst_app
Diffstat (limited to 'modules')
-rw-r--r-- | modules/apache/manifests/init.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/apache/manifests/init.pp b/modules/apache/manifests/init.pp index 191ac0c3..ead7d8f1 100644 --- a/modules/apache/manifests/init.pp +++ b/modules/apache/manifests/init.pp @@ -188,10 +188,11 @@ class apache { } } - define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false) { + define vhost_catalyst_app($script, $location = '', $process = 4, $use_ssl = false, $vhost = false) { include apache::mod_fastcgi vhost_base { $name: + vhost => $vhost, use_ssl => $use_ssl, content => template("apache/vhost_catalyst_app.conf") } |