summaryrefslogtreecommitdiffstats
path: root/test/data/snippets/fqparents.pp
blob: ee2f6542397b22d9453a92fb7ed1aba5dfb54c4f (plain)
1
2
3
4
5
6
7
8
9
10
11
class base {
    class one {
        file { "/tmp/fqparent1": ensure => file }
    }
}

class two::three inherits base::one {
    file { "/tmp/fqparent2": ensure => file }
}

include two::three