diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2024-01-26 23:29:59 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-26 23:29:59 +0200 |
| commit | 1254d5fc4e7d6b3717177fd353974a55b1777d4a (patch) | |
| tree | 527cd29e0d69f3eaad25ee6b3a38e2a13572b77b /python/xref2vtysh.py | |
| parent | 5db3bb0de95c6828bc8eda807f679ca2a7a68f8d (diff) | |
| parent | 83abe9c3cb9acd610dcdf8341374428df5ea9093 (diff) | |
Merge pull request #15220 from LabNConsulting/chopps/ripd-convert
ripd to mgmtd
Diffstat (limited to 'python/xref2vtysh.py')
| -rw-r--r-- | python/xref2vtysh.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/python/xref2vtysh.py b/python/xref2vtysh.py index 75fff8ddd9..c52ae5b9a6 100644 --- a/python/xref2vtysh.py +++ b/python/xref2vtysh.py @@ -33,18 +33,18 @@ frr_top_src = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) daemon_flags = { "lib/agentx.c": "VTYSH_ISISD|VTYSH_RIPD|VTYSH_OSPFD|VTYSH_OSPF6D|VTYSH_BGPD|VTYSH_ZEBRA", - "lib/filter.c": "VTYSH_ACL", - "lib/filter_cli.c": "VTYSH_ACL", + "lib/filter.c": "VTYSH_ACL_SHOW", + "lib/filter_cli.c": "VTYSH_ACL_CONFIG", "lib/if.c": "VTYSH_INTERFACE", "lib/keychain.c": "VTYSH_KEYS", - "lib/mgmt_be_client.c": "VTYSH_STATICD|VTYSH_ZEBRA", - "lib/mgmt_fe_client.c": "VTYSH_MGMTD", + "lib/mgmt_be_client.c": "VTYSH_MGMT_BACKEND", + "lib/mgmt_fe_client.c": "VTYSH_MGMT_FRONTEND", "lib/lib_vty.c": "VTYSH_ALL", "lib/log_vty.c": "VTYSH_ALL", "lib/nexthop_group.c": "VTYSH_NH_GROUP", "lib/resolver.c": "VTYSH_NHRPD|VTYSH_BGPD", - "lib/routemap.c": "VTYSH_RMAP", - "lib/routemap_cli.c": "VTYSH_RMAP", + "lib/routemap.c": "VTYSH_RMAP_SHOW", + "lib/routemap_cli.c": "VTYSH_RMAP_CONFIG", "lib/spf_backoff.c": "VTYSH_ISISD", "lib/event.c": "VTYSH_ALL", "lib/vrf.c": "VTYSH_VRF", @@ -209,7 +209,7 @@ class CommandEntry: if v6_cmd: return {"VTYSH_RIPNGD"} else: - return {"VTYSH_RIPD"} + return {"VTYSH_MGMTD"} return {} |
