aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--modules/planet/manifests/init.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/planet/manifests/init.pp b/modules/planet/manifests/init.pp
index 34dcdda4..90ea8c29 100644
--- a/modules/planet/manifests/init.pp
+++ b/modules/planet/manifests/init.pp
@@ -3,13 +3,13 @@
# - add the user 'planet' to the 'apache' group (usermod -a -G apache blog)
class planet {
user { "planet":
- groups => 'apache',
- comment => 'This user is used for planet.mageia.org',
- ensure => 'present',
- managehome => 'false',
+ group => apache,
+ comment => "This user is used for planet.mageia.org",
+ ensure => present,
+ managehome => true,
}
- include apache::mod_php
+ include apache::mod_php
apache::vhost_other_app { "planet.$domain":
vhost_file => "planet/02_planet_vhosts.conf",
}