mod/bridge-port-to: move reenable to correct level

This commit is contained in:
Christian Hesse 2022-06-15 09:59:50 +02:00
parent 5b3b3e182b
commit 5dc23dd267

View file

@ -15,9 +15,9 @@
:global LogPrintExit2; :global LogPrintExit2;
:global ParseKeyValueStore; :global ParseKeyValueStore;
:local InterfaceReEnable [ :toarray "" ];
:foreach BridgePort in=[ /interface/bridge/port/find where !(comment=[]) ] do={ :foreach BridgePort in=[ /interface/bridge/port/find where !(comment=[]) ] do={
:local BridgePortVal [ /interface/bridge/port/get $BridgePort ]; :local BridgePortVal [ /interface/bridge/port/get $BridgePort ];
:local InterfaceReEnable [ :toarray "" ];
:foreach Config,BridgeDefault in=[ $ParseKeyValueStore ($BridgePortVal->"comment") ] do={ :foreach Config,BridgeDefault in=[ $ParseKeyValueStore ($BridgePortVal->"comment") ] do={
:if ($Config = $BridgePortTo) do={ :if ($Config = $BridgePortTo) do={
:local DHCPClient [ /ip/dhcp-client/find where interface=$BridgePortVal->"interface" comment="toggle with bridge port" ]; :local DHCPClient [ /ip/dhcp-client/find where interface=$BridgePortVal->"interface" comment="toggle with bridge port" ];
@ -53,11 +53,11 @@
} }
} }
} }
:if ([ :len $InterfaceReEnable ] > 0) do={ }
:delay 2s; :if ([ :len $InterfaceReEnable ] > 0) do={
:foreach Interface in=$InterfaceReEnable do={ :delay 2s;
/interface/ethernet/enable [ find where name=$Interface ]; :foreach Interface in=$InterfaceReEnable do={
} /interface/ethernet/enable [ find where name=$Interface ];
} }
} }
} }