mirror of https://github.com/zulip/zulip.git
20 lines
380 B
ObjectPascal
20 lines
380 B
ObjectPascal
|
import "../manifests/concatfilepart.pp"
|
||
|
|
||
|
common::concatfilepart{"0_blah":
|
||
|
ensure => present,
|
||
|
content => "Z",
|
||
|
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",
|
||
|
}
|