summaryrefslogtreecommitdiff
path: root/tools/frr-reload.py
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2022-12-22 17:55:40 +0200
committerDonatas Abraitis <donatas@opensourcerouting.org>2022-12-22 17:55:40 +0200
commit4a9ea00a27c4edfb21e1efaed468a9eefc389d79 (patch)
tree7a4016a203ce2330f0b85a6c3cf86e236ec2b903 /tools/frr-reload.py
parentcb8d1c5598290e88f89c5bfcd13050fe4de4a154 (diff)
tools: Ignore agentx command for frr-reload.py
agentx can't be disabled once enabled, so we should ignore it for frr-reload.py. ``` $ /usr/lib/frr/frr-reload.py --reload /etc/frr/bgpd.conf --bindir /usr/local/bin "no agentx" we failed to remove this command SNMP AgentX support cannot be disabled once enabled ``` Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'tools/frr-reload.py')
-rwxr-xr-xtools/frr-reload.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py
index 7c5d91d4dc..bf402e1bef 100755
--- a/tools/frr-reload.py
+++ b/tools/frr-reload.py
@@ -1514,6 +1514,7 @@ def ignore_unconfigurable_lines(lines_to_add, lines_to_del):
[
ctx_keys[0].startswith(x)
for x in [
+ "agentx",
"frr version",
"frr defaults",
"username",