blob: 83383fb4544b5792cb1f4dc143fb0945992c3444 (
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
|
module confd.frr-ripngd {
namespace "urn:dummy";
prefix "dummy";
import tailf-common {
prefix tailf;
}
import frr-ripngd {
prefix frr-ripngd;
}
tailf:annotate-module "frr-ripngd" {
tailf:annotate-statement "container[name='ripngd']" {
tailf:annotate-statement "list[name='instance']" {
tailf:annotate-statement "container[name='state']" {
tailf:callpoint "state";
}
}
}
tailf:annotate-statement "rpc[name='clear-ripng-route']" {
tailf:actionpoint "actionpoint";
}
}
}
|