summaryrefslogtreecommitdiff
path: root/manifests/vhost/template.pp
diff options
context:
space:
mode:
authorAndreas <andreas@immerda.ch>2009-11-18 18:43:30 +0100
committerAndreas <andreas@immerda.ch>2009-11-18 18:43:30 +0100
commit8a30f43b186e967421fd550aa117a56dda869938 (patch)
tree1e4f9178b3e4c2045c32ce45222300a83cc9d253 /manifests/vhost/template.pp
parent211812c875cf0d6bfbf96d30b23ecaed7aee1fb3 (diff)
renames and proc move from webhosting for php_safe_mode_exec_bins
Diffstat (limited to 'manifests/vhost/template.pp')
-rw-r--r--manifests/vhost/template.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/vhost/template.pp b/manifests/vhost/template.pp
index 75cb9cf..ba2e4d1 100644
--- a/manifests/vhost/template.pp
+++ b/manifests/vhost/template.pp
@@ -24,7 +24,7 @@ define apache::vhost::template(
$domainalias = 'absent',
$server_admin = 'absent',
$allow_override = 'None',
- $php_bin_dir = 'absent',
+ $php_safe_mode_exec_bin_dir = 'absent',
$php_upload_tmp_dir = 'absent',
$php_session_save_path = 'absent',
$cgi_binpath = 'absent',
@@ -95,12 +95,12 @@ define apache::vhost::template(
}
# set default dirs for templates
- # php bin_dir
- case $php_bin_dir {
+ # php php_safe_mode_exec_bin directory
+ case $php_safe_mode_exec_bin_dir {
'absent': {
- $real_php_bin_dir = "/var/www/vhosts/$name/bin"
+ $real_php_safe_mode_exec_bin_dir = "/var/www/vhosts/$name/bin"
}
- default: { $real_php_bin_dir = $php_bin_dir }
+ default: { $real_php_safe_mode_exec_bin_dir = $php_safe_mode_exec_bin_dir }
}
# php upload_tmp_dir
case $php_upload_tmp_dir {