From: Gregory Meno Date: Wed, 19 Apr 2017 23:54:51 +0000 (-0700) Subject: removing unnecessary teardown X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F681%2Fhead;p=ceph-build.git removing unnecessary teardown Signed-off-by: Gregory Meno --- diff --git a/bz-mill/build/teardown b/bz-mill/build/teardown deleted file mode 100644 index 5790664a..00000000 --- a/bz-mill/build/teardown +++ /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