view modules/concat/examples/fragment.pp @ 482:d83de9b3a62b default tip

Update hiera.yaml within Puppet config Forgot that we manage it from here. Now has content to match new packages
author IBBoard <dev@ibboard.co.uk>
date Fri, 30 Aug 2024 16:10:36 +0100
parents d9352a684e62
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',
}