summaryrefslogtreecommitdiffstats
path: root/examples/code/snippets/componentmetaparams.pp
blob: 1d2c020c3eb18bc9a5e912f26e89afe81a038db6 (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"]
}