summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/append.pp
blob: 20cbda662e27526f19a500602d0b4b8b2be32be0 (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