aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/planet/manifests/init.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/planet/manifests/init.pp b/modules/planet/manifests/init.pp
index 8d1ea2b8..7387f50d 100644
--- a/modules/planet/manifests/init.pp
+++ b/modules/planet/manifests/init.pp
@@ -2,7 +2,7 @@
# - add the user 'planet' to the 'apache' group (usermod -a -G apache blog)
class planet {
user { "planet":
- group => apache,
+ groups => apache,
comment => "This user is used for planet.mageia.org",
ensure => present,
managehome => true,
@@ -15,8 +15,8 @@ class planet {
file { "/var/www/html/planet.mageia.org":
ensure => directory,
- owner => apache,
- group => blog,
+ owner => planet,
+ group => planet,
mode => 644,
}
}