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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1000 - (show annotations) (download)
Fri Feb 11 14:33:20 2011 UTC (13 years, 2 months ago) by dams
File size: 554 byte(s)
switch managehome to true
1 #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 class planet {
5 user { "planet":
6 group => apache,
7 comment => "This user is used for planet.mageia.org",
8 ensure => present,
9 managehome => true,
10 }
11
12 include apache::mod_php
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