summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-03-15 23:39:15 +0000
committermh <mh@immerda.ch>2009-03-15 23:39:15 +0000
commitfa6a382622c75a28ce46086c8eadc129c8a4fb7e (patch)
treebb1e483cb58364494d261a0e60063c8bbcae72ef /manifests
parent4bbdeb076e4ad692e859131d6ded6c2158c140e3 (diff)
pass all the params
Diffstat (limited to 'manifests')
-rw-r--r--manifests/defines/vhost_varieties.pp21
1 files changed, 13 insertions, 8 deletions
diff --git a/manifests/defines/vhost_varieties.pp b/manifests/defines/vhost_varieties.pp
index c27c7ee..b9ccb7b 100644
--- a/manifests/defines/vhost_varieties.pp
+++ b/manifests/defines/vhost_varieties.pp
@@ -582,26 +582,31 @@ define apache::vhost::php::webapp(
# create vhost configuration file
apache::vhost::php::standard{$name:
ensure => $ensure,
- path => $path,
- template_mode => $template_mode,
- vhost_mode => $vhost_mode,
- vhost_source => $vhost_source,
- vhost_destination => $vhost_destination,
domain => $domain,
domainalias => $domainalias,
+ path => $path,
+ template_mode => $template_mode,
+ $owner = $owner,
+ $group = $group,
+ $documentroot_owner = $documentroot_owner,
+ $documentroot_group = $documentroot_group,
+ $documentroot_mode = $documentroot_mode,
run_mode => $run_mode,
run_uid => $run_uid,
run_gid => $run_gid,
allow_override => $allow_override,
+ php_upload_tmp_dir => $php_upload_tmp_dir,
+ php_session_save_path => $php_session_save_path,
do_includes => $do_includes,
options => $options,
additional_options => $additional_options,
default_charset => $default_charset,
- php_upload_tmp_dir => $php_upload_tmp_dir,
- php_session_save_path => $php_session_save_path,
+ mod_security => $mod_security,
ssl_mode => $ssl_mode,
+ vhost_mode => $vhost_mode,
+ vhost_source => $vhost_source,
+ vhost_destination => $vhost_destination,
htpasswd_file => $htpasswd_file,
htpasswd_path => $htpasswd_path,
- mod_security => $mod_security,
}
}