diff options
| -rwxr-xr-x | tools/frr-reload.py | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/frr-reload.py b/tools/frr-reload.py index 53bb6513e2..08a1f1e07e 100755 --- a/tools/frr-reload.py +++ b/tools/frr-reload.py @@ -1163,7 +1163,12 @@ def pim_delete_move_lines(lines_to_add, lines_to_del):              ctx_keys[0] in pim_disable              and ctx_keys[0].startswith("interface")              and line -            and (line.startswith("ip pim ") or line.startswith("ip multicast ")) +            and ( +                line.startswith("ip pim ") +                or line.startswith("no ip pim ") +                or line.startswith("ip multicast ") +                or line.startswith("no ip multicast ") +            )          ):              lines_to_del_to_del.append((ctx_keys, line))  | 
