diff options
author | Alexandru Avadanii <Alexandru.Avadanii@enea.com> | 2019-06-05 13:27:28 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-06-05 13:27:28 +0000 |
commit | 57c56e54d4f78be897b03073cf882c62ad6d5822 (patch) | |
tree | 5cce2e6d3aa76d9d9a8c335f1f850cd051d64d6c /mcp | |
parent | 0e56195965eea0ecaaeedcf668e58eb75d0c1631 (diff) | |
parent | 4a9051284f69ded7bfadfb3a113513b6301c6a45 (diff) |
Merge "[lib] Add uninstall/cleanup option"
Diffstat (limited to 'mcp')
-rw-r--r-- | mcp/scripts/lib_jump_deploy.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mcp/scripts/lib_jump_deploy.sh b/mcp/scripts/lib_jump_deploy.sh index a96becadd..a8444b8cf 100644 --- a/mcp/scripts/lib_jump_deploy.sh +++ b/mcp/scripts/lib_jump_deploy.sh @@ -327,6 +327,27 @@ function create_networks { sudo systemctl restart opnfv-fuel-vetha } +function cleanup_all { + local image_dir=$1; shift + local all_vnode_networks=("$@") + [ ! -e "${image_dir}/docker-compose" ] || COMPOSE_PREFIX="${image_dir}/" + + cleanup_uefi + __cleanup_vms + sudo ip link del veth_mcp0 || true + sudo ip link del veth_mcp2 || true + for net in "mcpcontrol" "${all_vnode_networks[@]}"; do + if ${VIRSH} net-info "${net}" >/dev/null 2>&1; then + ${VIRSH} net-destroy "${net}" || true + ${VIRSH} net-undefine "${net}" + fi + done + sudo rm -f "/etc/systemd/system/multi-user.target.wants/opnfv-fuel"* \ + "/etc/systemd/system/opnfv-fuel"* + sudo systemctl daemon-reload + "${COMPOSE_PREFIX}docker-compose" -f docker-compose/docker-compose.yaml down +} + function create_vms { local image_dir=$1; shift local image=base_image_opnfv_fuel.img |