module-concat/tests/fragment.pp

20 lines
315 B
ObjectPascal
Raw Normal View History

2013-11-16 00:51:37 +01:00
concat { 'testconcat':
ensure => present,
path => '/tmp/concat',
2013-11-16 00:51:37 +01:00
owner => 'root',
group => 'root',
mode => '0664',
}
concat::fragment { '1':
target => 'testconcat',
content => '1',
order => '01',
}
concat::fragment { '2':
target => 'testconcat',
content => '2',
order => '02',
}