blob: 477918d063c950a1a8d916d9eb24146a315d1fc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#!/bin/bash
# Copyright 2015-2017 AT&T Intellectual Property, Inc
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# What this is: Cleanup script for the test network_bridging.sh
#
# Status: this is a work in progress, under test.
#
# Prerequisite:
# - OpenStack deployment with Congress service activated.
# - OpenStack CLI environment variables setup e.g. via admin-openrc.sh script.
# How to use:
# $ bash network_bridging-clean.sh
trap 'fail' ERR
pass() {
echo "Hooray!"
set +x #echo off
exit 0
}
# Use this to trigger fail() at the right places
# if [ "$RESULT" == "Test Failed!" ]; then fail; fi
fail() {
echo "Test Failed!"
set +x
exit 1
}
unclean() {
echo "Unclean environment!"
fail
}
echo "Get Congress policy 'test' ID"
test_policy_ID=$(openstack congress policy show test | awk "/ id / { print \$4 }")
echo "Delete Congress policy 'test' if it exists"
if [ "$test_policy_ID" != "" ]; then
openstack congress policy delete $test_policy_ID
echo "Existing policy 'test' deleted"
fi
echo "Delete cirros1 instance"
instance=$(nova list | awk "/ cirros1 / { print \$2 }")
if [ "$instance" != "" ]; then nova delete $instance; fi
echo "Delete cirros2 instance"
instance=$(nova list | awk "/ cirros2 / { print \$2 }")
if [ "$instance" != "" ]; then nova delete $instance; fi
echo "Wait for cirros1 and cirros2 to terminate"
COUNTER=5
RESULT="Wait!"
until [[ $COUNTER -eq 0 || $RESULT == "Go!" ]]; do
cirros1_id=$(openstack server list | awk "/ cirros1 / { print \$4 }")
cirros2_id=$(openstack server list | awk "/ cirros2 / { print \$4 }")
if [[ "$cirros1_id" == "" && "$cirros2_id" == "" ]]; then RESULT="Go!"; fi
let COUNTER-=1
sleep 5
done
echo "Delete test_dmz subnet"
neutron subnet-delete test_dmz
echo "Delete test_dmz network"
neutron net-delete test_dmz
echo "Delete test_admin subnet"
neutron subnet-delete test_admin
echo "Delete test_admin network"
neutron net-delete test_admin
pass
|