From 8cee1b72fca14f679047cf3ff90eb2adb1c2040c Mon Sep 17 00:00:00 2001 From: Damien Lallement Date: Fri, 11 Feb 2011 14:14:19 +0000 Subject: add the creation of the user 'planet' --- modules/planet/manifests/init.pp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'modules/planet/manifests') diff --git a/modules/planet/manifests/init.pp b/modules/planet/manifests/init.pp index a819cc5a..519935d9 100644 --- a/modules/planet/manifests/init.pp +++ b/modules/planet/manifests/init.pp @@ -2,6 +2,12 @@ # - add the creation of the user 'planet' in puppet # - add the user 'planet' to the 'apache' group (usermod -a -G apache blog) class planet { + user { "planet": + group => 'apache', + commend => 'This user was created by Puppet', + ensure => 'present', + managed_home => 'false', + } include apache::mod_php apache::vhost_other_app { "planet.$domain": -- cgit v1.2.1