diff options
| author | Donatas Abraitis <donatas.abraitis@gmail.com> | 2020-02-14 13:41:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-14 13:41:03 +0200 |
| commit | 547b989938068d9be646a79c60f87296fdba3558 (patch) | |
| tree | eb64654cd0a3e95c9017f6d2da6afffc51861f74 | |
| parent | 9df7724949a40900e08e1076259bd5dc08a07261 (diff) | |
| parent | 6c6959e811232821967087ab2cab50cddfe59bfa (diff) | |
Merge pull request #5810 from donaldsharp/fix_yang_routemap
Fix yang routemap
| -rw-r--r-- | pimd/pim_main.c | 2 | ||||
| -rw-r--r-- | sharpd/sharp_main.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/pimd/pim_main.c b/pimd/pim_main.c index f0ca367258..93b561ba0f 100644 --- a/pimd/pim_main.c +++ b/pimd/pim_main.c @@ -37,6 +37,7 @@ #include "plist.h" #include "vrf.h" #include "libfrr.h" +#include "routemap.h" #include "pimd.h" #include "pim_instance.h" @@ -73,6 +74,7 @@ struct zebra_privs_t pimd_privs = { static const struct frr_yang_module_info *const pimd_yang_modules[] = { &frr_interface_info, + &frr_route_map_info, }; FRR_DAEMON_INFO(pimd, PIM, .vty_port = PIMD_VTY_PORT, diff --git a/sharpd/sharp_main.c b/sharpd/sharp_main.c index a00106d686..5133523f01 100644 --- a/sharpd/sharp_main.c +++ b/sharpd/sharp_main.c @@ -112,6 +112,8 @@ struct quagga_signal_t sharp_signals[] = { #define SHARP_VTY_PORT 2614 static const struct frr_yang_module_info *const sharpd_yang_modules[] = { + &frr_interface_info, + &frr_route_map_info, }; FRR_DAEMON_INFO(sharpd, SHARP, .vty_port = SHARP_VTY_PORT, |
