Add support for IPv6 to machine and cluster chart
[icn.git] / tools / vagrant / destroy_baremetal_network.sh
1 #!/bin/bash
2 set -eu -o pipefail
3
4 site=$1
5
6 if virsh -c qemu:///system net-info ${site}-baremetal >/dev/null 2>&1; then
7    virsh -c qemu:///system net-destroy ${site}-baremetal
8    virsh -c qemu:///system net-undefine ${site}-baremetal
9 fi