dev/provisioning/modules/concat/tests/fragment.pp
author ymh <ymh.work@gmail.com>
Wed, 06 Jul 2016 14:22:24 +0200
changeset 229 744379451219
parent 28 b0b56e0f8c7f
permissions -rw-r--r--
add publisher and duration_ms to model

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

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

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