changeset 28 | b0b56e0f8c7f |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dev/provisioning/modules/concat/tests/fragment.pp Fri Jan 15 15:35:00 2016 +0100 @@ -0,0 +1,19 @@ +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', +}