diff --git a/src/vnm_mad/remotes/lib/no_vlan.rb b/src/vnm_mad/remotes/lib/no_vlan.rb index f8c11bff63..2450900326 100644 --- a/src/vnm_mad/remotes/lib/no_vlan.rb +++ b/src/vnm_mad/remotes/lib/no_vlan.rb @@ -43,7 +43,7 @@ module VNMMAD # Add phydev device to the bridge. OpenNebula.exec_and_log("#{command(:ip)} link set " \ - "#{@nic[:phydev]} master #{@nic[:bridge]}") + "#{@nic[:phydev]} master #{@nic[:bridge]}") @bridges[@nic[:bridge]] << @nic[:phydev] end @@ -78,9 +78,16 @@ module VNMMAD next if @nic[:conf][:keep_empty_bridge] # Return if the phydev device is not the only left device in - # the bridge. - next if (@bridges[@nic[:bridge]].length > 1) || + # the bridge.A + if @nic[:phydev].nil? + keep = !@bridges[@nic[:bridge]].empty? + else + + keep = @bridges[@nic[:bridge]].length > 1 || !@bridges[@nic[:bridge]].include?(@nic[:phydev]) + end + + next if keep # Delete the bridge. OpenNebula.exec_and_log("#{command(:ip)} link delete"\