projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git]
/
3rdparty
/
modules
/
concat
/
examples
/
fragment.pp
1
concat { 'testconcat':
2
ensure => present,
3
path => '/tmp/concat',
4
owner => 'root',
5
group => 'root',
6
mode => '0664',
7
show_diff => true,
8
}
9
10
concat::fragment { '1':
11
target => 'testconcat',
12
content => '1',
13
order => '01',
14
}
15
16
concat::fragment { '2':
17
target => 'testconcat',
18
content => '2',
19
order => '02',
20
}