]> git.puffer.fish Git - mirror/frr.git/commit
tools: fix frr-reload multiple no description cmds 15334/head
authorChirag Shah <chirag@nvidia.com>
Wed, 13 Dec 2023 01:31:40 +0000 (17:31 -0800)
committerChristian Breunig <christian@breunig.cc>
Thu, 8 Feb 2024 21:04:57 +0000 (22:04 +0100)
commitc123649995af495f278b18f39c77bd441a000596
treeef45ebe34db398f6c0a47027fa317dd72283c740
parentd92497a6d4c72b60b5c30b5c0d9caa65f94e72ee
tools: fix frr-reload multiple no description cmds

Ensure to change description for index 0 from the list.

Ticket: #3628756
Testing Done:

After fix:
start with three interfaces description delete in lines_to_del:
(Pdb) lines_to_del
[(('interface swp1',), "description swp1 -> sp1's swp1"),
(('interface swp2',), "description swp2 -> sp2's swp
1"), (('interface swp3',), "description swp3 -> sp3's swp1")]

After first iteration swp1:
(Pdb) index
0
(Pdb) lines_to_del
[(('interface swp1',), 'description'), (('interface swp2',),
"description swp2 -> sp2's swp1"), (('interface swp
1s2',), "description swp3 -> sp3's swp1")]

After second iteration swp2:
(Pdb) lines_to_del
[(('interface swp1',), 'description'), (('interface swp2',),
'description'), (('interface swp3',), "description
swp3 -> sp3's swp1")]

After third iteration swp3 fix
(Pdb) lines_to_del
[(('interface swp1',), 'description'), (('interface swp2',),
'description'), (('interface swp3',), 'description'
)]

Signed-off-by: Chirag Shah <chirag@nvidia.com>
(cherry picked from commit 8a5c6e4389a8f56c1a25941977a1f6acaf92f53e)
(cherry picked from commit dfc0a168d32d6cd7800815de3c335a232c8482da)
tools/frr-reload.py