[devstack] Remove bridge only if it's not OVB_PHYSICAL_BRIDGE
In a scenario we want to deploy DevStack with ironic inspector for real hardware and use OVS_PHYSICAL_BRIDGE for IRONIC_INSPECTOR_INTERFACE as well we dont need to issue interface delete. Change-Id: I45271ddc34b5e9d542b6a1499d698503717f5f03
This commit is contained in:
parent
59a20098f1
commit
c4cbfa7723
@ -296,7 +296,9 @@ function cleanup_inspector {
|
|||||||
sudo iptables -F ironic-inspector | true
|
sudo iptables -F ironic-inspector | true
|
||||||
sudo iptables -X ironic-inspector | true
|
sudo iptables -X ironic-inspector | true
|
||||||
|
|
||||||
|
if [[ $IRONIC_INSPECTOR_INTERFACE != $OVS_PHYSICAL_BRIDGE ]]; then
|
||||||
sudo ip link show $IRONIC_INSPECTOR_INTERFACE && sudo ip link delete $IRONIC_INSPECTOR_INTERFACE
|
sudo ip link show $IRONIC_INSPECTOR_INTERFACE && sudo ip link delete $IRONIC_INSPECTOR_INTERFACE
|
||||||
|
fi
|
||||||
sudo ip link show brbm-inspector && sudo ip link delete brbm-inspector
|
sudo ip link show brbm-inspector && sudo ip link delete brbm-inspector
|
||||||
sudo ovs-vsctl --if-exists del-port brbm-inspector
|
sudo ovs-vsctl --if-exists del-port brbm-inspector
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user