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

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

importacion de la puesta en marcha basica

File size: 461 bytes
Line 
1import "classes/*.pp"
2
3# Create "/tmp/testfile" if it doesn't exist.
4class test_class {
5    file { "/tmp/testfile":
6       ensure => present,
7       mode   => 644,
8       owner  => root,
9       group  => root
10    }
11}
12
13# tell puppet on which client to run the class
14#node walsh {
15#    include test_class
16#}
17node walsh {
18    include test_class
19    include matrix::cronapt
20    include ltsp
21    include estacion-de-trabajo
22}
23
24node zara  {
25    include test_class
26}
27
Note: See TracBrowser for help on using the repository browser.