]> git.apps.os.sepia.ceph.com Git - ceph-build.git/commitdiff
removing unnecessary teardown 681/head
authorGregory Meno <gmeno@redhat.com>
Wed, 19 Apr 2017 23:54:51 +0000 (16:54 -0700)
committerGregory Meno <gmeno@redhat.com>
Wed, 19 Apr 2017 23:54:51 +0000 (16:54 -0700)
Signed-off-by: Gregory Meno <gmeno@redhat.com>
bz-mill/build/teardown [deleted file]

diff --git a/bz-mill/build/teardown b/bz-mill/build/teardown
deleted file mode 100644 (file)
index 5790664..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/bash
-# There has to be a better way to do this than this script which just looks
-# for every Vagrantfile in scenarios and then just destroys whatever is left.
-
-cd $WORKSPACE/ceph-ansible/tests/functional
-
-scenarios=$(find . | grep Vagrantfile | xargs dirname)
-
-for scenario in $scenarios; do
-    cd $scenario
-    vagrant destroy -f
-    cd -
-done