summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2011-10-09 00:51:57 +0200
committermh <mh@immerda.ch>2011-10-09 00:51:57 +0200
commit40d57d53c94f58c68c946fe35b7a567629953d17 (patch)
treeb2ee883b9bcd6ab0ab8d4150078ca8feb88c9a7d /manifests
parent9ce971defd96d028b162c323914b9641ed99366a (diff)
fix access mode for fcgid webdirs
Diffstat (limited to 'manifests')
-rw-r--r--manifests/vhost/webdir.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/vhost/webdir.pp b/manifests/vhost/webdir.pp
index 857c8e6..ca3b2b6 100644
--- a/manifests/vhost/webdir.pp
+++ b/manifests/vhost/webdir.pp
@@ -20,7 +20,7 @@ define apache::vhost::webdir(
default => "${path}"
}
- if ($run_mode =~ /^(static\-|proxy\-)?itk$/) and ($mode == '0640'){
+ if (($run_mode =~ /^(static\-|proxy\-)?itk$/) or $run_mode == 'fcgid') and ($mode == '0640'){
$real_mode = 0644
} else {
$real_mode = $mode