view 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
line wrap: on
line source

concat { 'testconcat':
  ensure    => present,
  path      => '/tmp/concat',
  owner     => 'root',
  group     => 'root',
  mode      => '0664',
  show_diff => true,
}

concat::fragment { '1':
  target  => 'testconcat',
  content => '1',
  order   => '01',
}

concat::fragment { '2':
  target  => 'testconcat',
  content => '2',
  order   => '02',
}