aboutsummaryrefslogtreecommitdiffstats
path: root/modules/planet
diff options
context:
space:
mode:
authorDamien Lallement <dams@mageia.org>2011-02-11 14:33:20 +0000
committerDamien Lallement <dams@mageia.org>2011-02-11 14:33:20 +0000
commita5184a8efa0f22ee95a572db26a51e3b4973c6bf (patch)
tree94e6dfc4993e9f077fc86c793eae710031d97809 /modules/planet
parenteb940e1d6a6751194e9b942641870a82ca7373cd (diff)
downloadpuppet-a5184a8efa0f22ee95a572db26a51e3b4973c6bf.tar
puppet-a5184a8efa0f22ee95a572db26a51e3b4973c6bf.tar.gz
puppet-a5184a8efa0f22ee95a572db26a51e3b4973c6bf.tar.bz2
puppet-a5184a8efa0f22ee95a572db26a51e3b4973c6bf.tar.xz
puppet-a5184a8efa0f22ee95a572db26a51e3b4973c6bf.zip
switch managehome to true
Diffstat (limited to 'modules/planet')
-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",
}