/[adm]/puppet/modules/planet/manifests/init.pp
ViewVC logotype

Annotation of /puppet/modules/planet/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 993 - (hide annotations) (download)
Fri Feb 11 14:14:19 2011 UTC (13 years, 2 months ago) by dams
File size: 555 byte(s)
add the creation of the user 'planet'
1 dams 909 #TODO:
2     # - add the creation of the user 'planet' in puppet
3     # - add the user 'planet' to the 'apache' group (usermod -a -G apache blog)
4 dams 911 class planet {
5 dams 993 user { "planet":
6     group => 'apache',
7     commend => 'This user was created by Puppet',
8     ensure => 'present',
9     managed_home => 'false',
10     }
11 dams 909 include apache::mod_php
12    
13     apache::vhost_other_app { "planet.$domain":
14     vhost_file => "planet/02_planet_vhosts.conf",
15     }
16    
17     file { "/var/www/html/planet.mageia.org":
18     ensure => directory,
19     owner => apache,
20     group => blog,
21     mode => 644,
22     }
23     }

  ViewVC Help
Powered by ViewVC 1.1.30