summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/componentmetaparams.pp
blob: 7d9f0c2c1265a1781420742880bef5da805fdbc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
file { "/tmp/component1":
    ensure => file
}

define thing {
    file { $name: ensure => file }
}

thing { "/tmp/component2":
    require => File["/tmp/component1"]
}