blob: 9b5655afc25a8b3f108c8947136ab7badd477fe4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
defaults {
key = "val"
foo = "bar"
many = "values here"
}
mything {
.inherit "defaults"
key = "newval"
key = "newval1"
}
mything {
.inherit "mything"
key = "newval"
}
.priority 3
defaults {
key = "val1"
foo = "bar1"
many = "values here"
}
mything1 {
key2 = "wtf??"
.priority 1
.inherit "defaults"
.inherit "mything"
.inherit "mything1"
key1 = "newval"
key2 = "OMG" # low priority
}
|