summaryrefslogtreecommitdiff
path: root/manifests/vhost.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-06-08 12:09:39 -0300
committermh <mh@immerda.ch>2012-06-08 12:09:39 -0300
commit9cbf2fafee3f4623b75d1a6b70458ab097e64924 (patch)
tree82a619d81198ddd49cb5df5f1116281904e08023 /manifests/vhost.pp
parentedc2afe65136d49501b6aaeb805269b3f7bb141f (diff)
fix dynamic scope variables, function access
Diffstat (limited to 'manifests/vhost.pp')
-rw-r--r--manifests/vhost.pp6
1 files changed, 5 insertions, 1 deletions
diff --git a/manifests/vhost.pp b/manifests/vhost.pp
index 64c20c7..90af00d 100644
--- a/manifests/vhost.pp
+++ b/manifests/vhost.pp
@@ -62,7 +62,9 @@ define apache::vhost(
$mod_security_additional_options = 'absent',
$use_mod_macro = false,
$ldap_auth = false,
- $ldap_user = 'any'
+ $ldap_user = 'any',
+ $passing_extension = 'absent',
+ $gempath = 'absent'
) {
# file or template mode?
case $vhost_mode {
@@ -111,6 +113,8 @@ define apache::vhost(
mod_security_rules_to_disable => $mod_security_rules_to_disable,
mod_security_additional_options => $mod_security_additional_options,
use_mod_macro => $use_mod_macro,
+ passing_extension => $passing_extension,
+ gempath => $gempath,
}
}
default: { fail("no such vhost_mode: $vhost_mode defined for $name.") }