summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/scopetest
blob: 331491766c3ae9ee3e81cd6fb911a8d5b720ac21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

$mode = 640

define thing {
    file { "/tmp/$name": ensure => file, mode => $mode }
}

class testing {
    $mode = 755
    thing {scopetest: }
}

include testing