/[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 994 - (show annotations) (download)
Fri Feb 11 14:16:05 2011 UTC (13 years, 2 months ago) by dams
File size: 556 byte(s)
typo
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 groups => 'apache',
7 commend => 'This user was created by Puppet',
8 ensure => 'present',
9 managed_home => 'false',
10 }
11 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