Mercurial > repos > other > Puppet
comparison modules/concat/examples/fragment.pp @ 275:d9352a684e62
Mass update of modules to remove deprecation warnings
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 26 Jan 2020 11:36:07 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
274:b2571c28fc27 | 275:d9352a684e62 |
---|---|
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 } |