summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/defines/vhost_files.pp3
-rw-r--r--manifests/defines/vhost_varieties.pp6
2 files changed, 9 insertions, 0 deletions
diff --git a/manifests/defines/vhost_files.pp b/manifests/defines/vhost_files.pp
index 5352745..443375c 100644
--- a/manifests/defines/vhost_files.pp
+++ b/manifests/defines/vhost_files.pp
@@ -24,6 +24,7 @@ define apache::vhost(
$php_upload_tmp_dir = 'absent',
$php_session_save_path = 'absent',
$cgi_binpath = 'absent',
+ $default_charset = 'absent',
$do_includes = false,
$options = 'absent',
$additional_options = 'absent',
@@ -59,6 +60,7 @@ define apache::vhost(
do_includes => $do_includes,
options => $options,
additional_options => $additional_options,
+ default_charset => $default_charset,
run_mode => $run_mode,
run_uid => $run_uid,
run_gid => $run_gid,
@@ -181,6 +183,7 @@ define apache::vhost::template(
$do_includes = false,
$options = 'absent',
$additional_options = 'absent',
+ $default_charset = 'absent',
$run_mode = 'normal',
$run_uid = 'absent',
$run_gid = 'absent',
diff --git a/manifests/defines/vhost_varieties.pp b/manifests/defines/vhost_varieties.pp
index f84e537..1f2a0ed 100644
--- a/manifests/defines/vhost_varieties.pp
+++ b/manifests/defines/vhost_varieties.pp
@@ -26,6 +26,7 @@ define apache::vhost::static(
$do_includes = false,
$options = 'absent',
$additional_options = 'absent',
+ $default_charset = 'absent',
$ssl_mode = false,
$vhost_mode = 'template',
$vhost_source = 'absent',
@@ -56,6 +57,7 @@ define apache::vhost::static(
do_includes => $do_includes,
options => $options,
additional_options => $additional_options,
+ default_charset => $default_charset,
ssl_mode => $ssl_mode,
htpasswd_file => $htpasswd_file,
htpasswd_path => $htpasswd_path,
@@ -78,6 +80,7 @@ define apache::vhost::php::standard(
$do_includes = false,
$options = 'absent',
$additional_options = 'absent',
+ $default_charset = 'absent',
$mod_security = true,
$ssl_mode = false,
$vhost_mode = 'template',
@@ -139,6 +142,7 @@ define apache::vhost::php::standard(
do_includes => $do_includes,
options => $options,
additional_options => $additional_options,
+ default_charset => $default_charset,
php_upload_tmp_dir => $real_upload_tmp_dir,
php_session_save_path => $real_session_save_path,
ssl_mode => $ssl_mode,
@@ -171,6 +175,7 @@ define apache::vhost::modperl(
$do_includes = false,
$options = 'absent',
$additional_options = 'absent',
+ $default_charset = 'absent',
$mod_security = true,
$ssl_mode = false,
$vhost_mode = 'template',
@@ -226,6 +231,7 @@ define apache::vhost::modperl(
do_includes => $do_includes,
options => $options,
additional_options => $additional_options,
+ default_charset => $default_charset,
cgi_binpath => $real_cgi_binpath,
ssl_mode => $ssl_mode,
htpasswd_file => $htpasswd_file,