summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-08 14:22:42 +0000
committermh <mh@immerda.ch>2008-11-08 14:22:42 +0000
commitf4ff26f1b89c405f714aca98cd2078fab678ae1e (patch)
treef1de2f6c1c52a81e9c650a65a10714c3090cdc92 /manifests
parentc92a170b34bfd26910793479b63e86184f702296 (diff)
added options for vhosts
Diffstat (limited to 'manifests')
-rw-r--r--manifests/defines.pp7
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/defines.pp b/manifests/defines.pp
index b9da326..e78ef7b 100644
--- a/manifests/defines.pp
+++ b/manifests/defines.pp
@@ -26,6 +26,7 @@ define apache::vhost::static(
$apache_group = 0,
$apache_mode = 0640,
$allow_override = 'None',
+ $options = 'absent',
$additional_options = 'absent',
$ssl_mode = 'false',
$vhost_mode = 'template',
@@ -50,6 +51,7 @@ define apache::vhost::static(
domain => $domain,
domainalias => $domainalias,
allow_override => $allow_override,
+ options => $options,
additional_options => $additional_options,
template_mode => 'static',
ssl_mode => $ssl_mode,
@@ -71,6 +73,7 @@ define apache::vhost::php::standard(
$allow_override = 'None',
$upload_tmp_dir = 'absent',
$session_save_path = 'absent',
+ $options = 'absent',
$additional_options = 'absent',
$mod_security = 'true',
$vhost_mode = 'template',
@@ -124,6 +127,7 @@ define apache::vhost::php::standard(
domain => $domain,
domainalias => $domainalias,
allow_override => $allow_override,
+ options => $options,
additional_options => $additional_options,
php_upload_tmp_dir => $real_upload_tmp_dir,
php_session_save_path => $real_session_save_path,
@@ -154,6 +158,7 @@ define apache::vhost(
$allow_override = 'None',
$php_upload_tmp_dir = 'absent',
$php_session_save_path = 'absent',
+ $options = 'absent',
$additional_options = 'absent',
$template_mode = 'static',
$ssl_mode = 'false',
@@ -174,6 +179,7 @@ define apache::vhost(
php_upload_tmp_dir => $php_upload_tmp_dir,
php_session_save_path => $php_session_save_path,
allow_override => $allow_override,
+ options => $options,
additional_options => $additional_options,
template_mode => $template_mode,
ssl_mode => $ssl_mode,
@@ -249,6 +255,7 @@ define apache::vhost::template(
$allow_override = 'None',
$php_upload_tmp_dir = 'absent',
$php_session_save_path = 'absent',
+ $options = 'absent',
$additional_options = 'absent',
$template_mode = 'static',
$ssl_mode = 'false',