summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2008-11-07 18:07:46 +0000
committermh <mh@immerda.ch>2008-11-07 18:07:46 +0000
commit0068f91d39eb358707c1155d693b7711c1c369ae (patch)
tree092394b0b57ba4129ab5065176a95cda1b56fa1f
parentbde502ef88916e9befb3c920ec24d872eeb9664b (diff)
fix default user and group for openbsd
-rw-r--r--manifests/defines.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/defines.pp b/manifests/defines.pp
index 29a1128..3a2844c 100644
--- a/manifests/defines.pp
+++ b/manifests/defines.pp
@@ -413,7 +413,7 @@ define apache::vhost::webhostdir(
case $apache_default_user {
'': {
$real_apache_user = $operatingsystem ? {
- openbsd => 'nobody',
+ openbsd => 'www',
default => $apache_user
}
}
@@ -428,7 +428,7 @@ define apache::vhost::webhostdir(
case $apache_default_group {
'': {
$real_apache_group = $operatingsystem ? {
- openbsd => 'nobody',
+ openbsd => 'www',
default => $apache_group
}
}