Migrating to Mitaka
[apex.git] / ci / clean.sh
1 #!/usr/bin/env bash
2 ##############################################################################
3 # Copyright (c) 2015 Tim Rozet (Red Hat), Dan Radez (Red Hat) and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 #Clean script to uninstall provisioning server for Apex
12 #author: Dan Radez (dradez@redhat.com)
13 #author: Tim Rozet (trozet@redhat.com)
14
15 # Use default if no param passed
16 CONFIG=${1-"/var/opt/opnfv"}
17
18 ##LIBRARIES
19 source $CONFIG/lib/common-functions.sh
20
21 vm_index=4
22 ovs_bridges="br-admin br-private br-public br-storage"
23
24 # Clean off instack/undercloud VM
25 for vm in instack undercloud; do
26   virsh destroy $vm 2> /dev/null | xargs echo -n
27   virsh undefine $vm 2> /dev/null | xargs echo -n
28   /usr/bin/touch /var/lib/libvirt/images/${vm}.qcow2
29   virsh vol-delete ${vm}.qcow2 --pool default 2> /dev/null | xargs echo -n
30   rm -f /var/lib/libvirt/images/${vm}.qcow2 2> /dev/null
31 done
32
33 # Clean off baremetal VMs in case they exist
34 for i in $(seq 0 $vm_index); do
35   virsh destroy baremetal$i 2> /dev/null | xargs echo -n
36   virsh undefine baremetal$i 2> /dev/null | xargs echo -n
37   /usr/bin/touch /var/lib/libvirt/images/baremetal${i}.qcow2
38   virsh vol-delete baremetal${i}.qcow2 --pool default 2> /dev/null | xargs echo -n
39   rm -f /var/lib/libvirt/images/baremetal${i}.qcow2 2> /dev/null
40 done
41
42 # Clean off created bridges
43 for bridge in ${ovs_bridges}; do
44   virsh net-destroy ${bridge} 2> /dev/null | xargs echo -n
45   virsh net-undefine ${bridge} 2> /dev/null | xargs echo -n
46   if detach_interface_from_ovs ${bridge} 2> /dev/null; then
47     ovs-vsctl del-br ${bridge} 2> /dev/null
48   fi
49 done
50
51 # clean pub keys from root's auth keys
52 sed -i '/stack@undercloud.localdomain/d' /root/.ssh/authorized_keys
53 sed -i '/virtual-power-key/d' /root/.ssh/authorized_keys
54
55
56 echo "Cleanup Completed"