xref: /Universal-ctags/Units/parser-puppetManifest.r/puppet-componentmetaparams.d/input.pp (revision 6201d8aab20bf8024d5a01b300b0c4dc0c3e0e91)
1file { "/tmp/component1":
2    ensure => file
3}
4
5define thing {
6    file { $name: ensure => file }
7}
8
9thing { "/tmp/component2":
10    require => File["/tmp/component1"]
11}
12