Update stdlib and concat to 6.1.0 both
[mirror/dsa-puppet.git] / 3rdparty / modules / concat / examples / format.pp
1 concat { '/tmp/file':
2   format => 'yaml', # See REFERENCE.md for more formats
3 }
4
5 concat::fragment { '1':
6   target  => '/tmp/file',
7   content => '{"one": "foo"}',
8 }
9
10 concat::fragment { '2':
11   target  => '/tmp/file',
12   content => '{"two": "bar"}',
13 }