mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
sections for that interface changed Ticket: CM-5841 Reviewed By: Testing Done: tested ifreload with new iface section <email_notes> problem stmt: if the user adds a new section for an existing interface, I mark the interface for down. Basically the below: if len(newifaceobjlist) != len(lastifaceobjlist): ifacedownlist.append(ifname) continue You rarely need to add a new section to the interfaces file. It is not recommended even by the user guide. sankaran was trying to add a new address. Which he could have added to the same iface section. But, looking at his trivial example, i am thinking of not marking an interface for down if the user merely tried to add a new section to an existing interface </email_notes>