summaryrefslogtreecommitdiffstats
path: root/compass/deploy/func.sh
diff options
context:
space:
mode:
authorJerry Zhao <zhaoxinyu@huawei.com>2015-04-11 08:21:10 +0800
committerJerry Zhao <zhaoxinyu@huawei.com>2015-04-20 20:46:01 +0800
commit77bf95508534a744c4b6e7b5635ec1e8eb294098 (patch)
tree38ed362a6a88b7bc7e010a6614f0de6146a5920a /compass/deploy/func.sh
parente1d29739ccbc6efc20f400636a211dae0e75bff4 (diff)
first commit of deploy.sh for compass
with deploy.sh in this patch, a compass vagrant box will be spawned along with 5 libvirt vms. compass api will be called to install ubuntu 14.04 on those libvirt vms. in a patch later, openstack will be configured to be installed. JIRA: BGS-28 Change-Id: Ie5f8442331081289a1a81a8e3295c881b0504c3c Signed-off-by: Jerry Zhao <zhaoxinyu@huawei.com>
Diffstat (limited to 'compass/deploy/func.sh')
-rw-r--r--compass/deploy/func.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/compass/deploy/func.sh b/compass/deploy/func.sh
new file mode 100644
index 0000000..29c2c23
--- /dev/null
+++ b/compass/deploy/func.sh
@@ -0,0 +1,20 @@
+function tear_down_machines() {
+ virtmachines=$(virsh list --name |grep pxe)
+ for virtmachine in $virtmachines; do
+ echo "destroy $virtmachine"
+ virsh destroy $virtmachine
+ if [[ "$?" != "0" ]]; then
+ echo "destroy instance $virtmachine failed"
+ exit 1
+ fi
+ done
+ virtmachines=$(virsh list --all --name |grep pxe)
+ for virtmachine in $virtmachines; do
+ echo "undefine $virtmachine"
+ virsh undefine $virtmachine
+ if [[ "$?" != "0" ]]; then
+ echo "undefine instance $virtmachine failed"
+ exit 1
+ fi
+ done
+}