summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/aliastest.pp
blob: f2b61592e3655941083c9443e08f939dc1a61ee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
file { "a file":
    path => "/tmp/aliastest",
    ensure => file
}

file { "another":
    path => "/tmp/aliastest2",
    ensure => file,
    require => File["a file"]
}

file { "a third":
    path => "/tmp/aliastest3",
    ensure => file,
    require => File["/tmp/aliastest"]
}