Files
zulip/servers/puppet/modules/puppet-common/tests/concatfilepart2.pp
Tim Abbott d757b630bf Import puppet-common from https://github.com/camptocamp/puppet-common.git
(imported from commit bb3ccac0dd0cc5688be0f1487092cbe34b107002)
2012-09-20 17:00:24 -04:00

20 lines
381 B
Puppet
Executable File

import "../manifests/concatfilepart.pp"
common::concatfilepart{"0_header":
ensure => absent,
content => "A",
file => "/tmp/test-concat.txt",
}
common::concatfilepart{"1_body":
ensure => present,
content => "B",
file => "/tmp/test-concat.txt",
}
common::concatfilepart{"9_footer":
ensure => present,
content => "C",
file => "/tmp/test-concat.txt",
}