Last change
on this file since 353 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 | |
---|
1 | import "classes/*.pp" |
---|
2 | import "common/*.pp" |
---|
3 | import "/etc/puppet/modules/module-svn/manifests/*.pp" |
---|
4 | |
---|
5 | import "node-prod-estaciones.pp" |
---|
6 | import "node-prod-servidores.pp" |
---|
7 | import "lugo.pp" |
---|
8 | import "walsh.pp" |
---|
9 | |
---|
10 | # Create "/tmp/testfile" if it doesn't exist. |
---|
11 | class 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 |
---|
21 | node peon { |
---|
22 | include test_class |
---|
23 | include estacion-de-trabajo |
---|
24 | } |
---|
25 | |
---|
26 | node ardizzone { |
---|
27 | include test_class |
---|
28 | include audiostreamer |
---|
29 | |
---|
30 | debproxy::activateclient { dist: |
---|
31 | debproxyhost => "debproxy", |
---|
32 | } |
---|
33 | |
---|
34 | } |
---|
35 | |
---|
36 | node zara { |
---|
37 | include test_class |
---|
38 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.