manage bmdb1/dak pg_hba: fix common.yaml
[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 }