summaryrefslogtreecommitdiff
path: root/manifests/vhost/php/safe_mode_bin.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/vhost/php/safe_mode_bin.pp')
-rw-r--r--manifests/vhost/php/safe_mode_bin.pp14
1 files changed, 9 insertions, 5 deletions
diff --git a/manifests/vhost/php/safe_mode_bin.pp b/manifests/vhost/php/safe_mode_bin.pp
index aad4a29..e04557c 100644
--- a/manifests/vhost/php/safe_mode_bin.pp
+++ b/manifests/vhost/php/safe_mode_bin.pp
@@ -5,12 +5,16 @@
# run_uid: the uid the vhost should run as with the itk module
# run_gid: the gid the vhost should run as with the itk module
define apache::vhost::php::safe_mode_bin(
- $path
+ $ensure = 'present',
+ $path
){
- $substr=regsubst($name,'^.*\/','','G')
- $real_path = "$path/$substr"
- link{ "$real_path":
- target => regsubst($name,'^.*_','')
+ $substr=regsubst($name,'^.*\/','','G')
+ $real_path = "$path/$substr"
+ file{$real_path:
+ ensure => $ensure ? {
+ 'present' => regsubst($name,'^.*_',''),
+ default => absent,
}
+ }
}