mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 09:08:51 -05:00
24 lines
354 B
Text
24 lines
354 B
Text
# In this test we test include override bug
|
|
|
|
.include(priority = 1) "${CURDIR}/15.inc"
|
|
|
|
section = {
|
|
value = "test";
|
|
}
|
|
|
|
overrided = {
|
|
value = "not-to-be-shown";
|
|
}
|
|
|
|
/*
|
|
BUGGED UCL:
|
|
overrided {
|
|
key = "overrided";
|
|
}
|
|
!!! So overrided has actually rewritten the previous key
|
|
section {
|
|
value {
|
|
value = "not-to-be-shown";
|
|
}
|
|
}
|
|
*/
|