diff options
Diffstat (limited to 'manifests/vhost')
-rw-r--r-- | manifests/vhost/php/standard.pp | 3 | ||||
-rw-r--r-- | manifests/vhost/template.pp | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/manifests/vhost/php/standard.pp b/manifests/vhost/php/standard.pp index 461c85a..d909c04 100644 --- a/manifests/vhost/php/standard.pp +++ b/manifests/vhost/php/standard.pp @@ -25,6 +25,7 @@ define apache::vhost::php::standard( $php_upload_tmp_dir = 'absent', $php_session_save_path = 'absent', $php_use_smarty = false, + $php_use_pear = false, $do_includes = false, $options = 'absent', $additional_options = 'absent', @@ -89,6 +90,8 @@ define apache::vhost::php::standard( default_charset => $default_charset, php_upload_tmp_dir => $php_upload_tmp_dir, php_session_save_path => $php_session_save_path, + php_use_smarty => $php_use_smarty, + php_use_pear => $php_use_pear, ssl_mode => $ssl_mode, htpasswd_file => $htpasswd_file, htpasswd_path => $htpasswd_path, diff --git a/manifests/vhost/template.pp b/manifests/vhost/template.pp index 228ec9d..84e7f33 100644 --- a/manifests/vhost/template.pp +++ b/manifests/vhost/template.pp @@ -13,6 +13,7 @@ # - false: don't enable ssl for this vhost (default) # - true: enable ssl for this vhost # - force: enable ssl and redirect non-ssl to ssl +# - only: enable ssl only # define apache::vhost::template( $ensure = present, @@ -31,6 +32,7 @@ define apache::vhost::template( $additional_options = 'absent', $default_charset = 'absent', $php_use_smarty = false, + $php_use_pear = false, $run_mode = 'normal', $run_uid = 'absent', $run_gid = 'absent', |