source: trunk/puppet/manifests/site.pp @ 367

Last change on this file since 367 was 310, checked in by sebas, 15 years ago

las maquinas que van a ser permanente, les mando en un archivo aparte

File size: 700 bytes
Line 
1import "classes/*.pp"
2import "common/*.pp"
3import "/etc/puppet/modules/module-svn/manifests/*.pp"
4
5import "node-prod-estaciones.pp"
6import "node-prod-servidores.pp"
7import "lugo.pp"
8import "walsh.pp"
9
10# Create "/tmp/testfile" if it doesn't exist.
11class test_class {
12    file { "/tmp/testfile":
13       ensure => present,
14       mode   => 644,
15       owner  => root,
16       group  => root
17    }
18}
19
20# tell puppet on which client to run the class
21node peon {
22    include test_class
23    include estacion-de-trabajo
24}
25
26node ardizzone {
27    include test_class
28    include audiostreamer
29
30    debproxy::activateclient { dist:
31       debproxyhost => "debproxy",
32    }
33
34}
35
36node zara  {
37    include test_class
38}
Note: See TracBrowser for help on using the repository browser.