Merge "Replace ifconfig with ip"

This commit is contained in:
Jenkins 2016-02-20 02:28:43 +00:00 committed by Gerrit Code Review
commit e0d439f14f
2 changed files with 2 additions and 2 deletions

View File

@ -26,5 +26,5 @@ fi
sudo brctl delif br-$NAME ovs-$NAME || true sudo brctl delif br-$NAME ovs-$NAME || true
sudo ovs-vsctl del-port $NETWORK_BRIDGE ovs-$NAME || true sudo ovs-vsctl del-port $NETWORK_BRIDGE ovs-$NAME || true
sudo ifconfig br-$NAME down || true sudo ip link set dev br-$NAME down || true
sudo brctl delbr br-$NAME || true sudo brctl delbr br-$NAME || true

View File

@ -18,7 +18,7 @@ export VIRSH_DEFAULT_CONNECT_URI="$LIBVIRT_CONNECT_URI"
# Only add bridge if missing. Bring it UP. # Only add bridge if missing. Bring it UP.
(sudo ovs-vsctl list-br | grep ${BRIDGE_NAME}$) || sudo ovs-vsctl add-br ${BRIDGE_NAME} (sudo ovs-vsctl list-br | grep ${BRIDGE_NAME}$) || sudo ovs-vsctl add-br ${BRIDGE_NAME}
sudo ifconfig ${BRIDGE_NAME} up sudo ip link set dev ${BRIDGE_NAME} up
# Remove bridge before replacing it. # Remove bridge before replacing it.
(virsh net-list | grep "${BRIDGE_NAME} ") && virsh net-destroy ${BRIDGE_NAME} (virsh net-list | grep "${BRIDGE_NAME} ") && virsh net-destroy ${BRIDGE_NAME}