diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/planet/manifests/init.pp | 6 |
1 files changed, 6 insertions, 0 deletions
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": |