fragment.pp 315 B

12345678910111213141516171819
  1. concat { 'testconcat':
  2. ensure => present,
  3. path => '/tmp/concat',
  4. owner => 'root',
  5. group => 'root',
  6. mode => '0664',
  7. }
  8. concat::fragment { '1':
  9. target => 'testconcat',
  10. content => '1',
  11. order => '01',
  12. }
  13. concat::fragment { '2':
  14. target => 'testconcat',
  15. content => '2',
  16. order => '02',
  17. }