]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/concat/tests/fragment.pp
try if downgrading to 1.2.2 solves my problem
[dsa-puppet.git] / 3rdparty / modules / concat / tests / fragment.pp
1 concat { 'testconcat':
2   ensure => present,
3   path   => '/tmp/concat',
4   owner  => 'root',
5   group  => 'root',
6   mode   => '0664',
7 }
8
9 concat::fragment { '1':
10   target  => 'testconcat',
11   content => '1',
12   order   => '01',
13 }
14
15 concat::fragment { '2':
16   target  => 'testconcat',
17   content => '2',
18   order   => '02',
19 }