source:
trunk/puppet/manifests/site.pp
@
649
Last change on this file since 649 was 591, checked in by , 15 years ago | |
---|---|
File size: 371 bytes |
Line | |
---|---|
1 | import "classes/*.pp" |
2 | #import "common1/*.pp" |
3 | #import "common/line.pp" |
4 | import "/etc/puppet/modules/module-svn/manifests/*.pp" |
5 | |
6 | import "/etc/puppet/nodes/*.pp" |
7 | |
8 | import "common" |
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 |
Note: See TracBrowser
for help on using the repository browser.