summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/append.pp
blob: 28edeb177112cec2f20d46f292d797b3ca0f7bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
$var=['/tmp/file1','/tmp/file2']

class arraytest {
	$var += ['/tmp/file3', '/tmp/file4']
	file {
		$var:
			content => "test"
	}
}

include arraytest