X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fqa%2Fqa_scripts%2Fopenstack%2Fceph_install_w_ansible%2Fstaller.sh;fp=src%2Fceph%2Fqa%2Fqa_scripts%2Fopenstack%2Fceph_install_w_ansible%2Fstaller.sh;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=2e560024cb8c4cda887bbbadb28136d3d7416bdc;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/qa/qa_scripts/openstack/ceph_install_w_ansible/staller.sh b/src/ceph/qa/qa_scripts/openstack/ceph_install_w_ansible/staller.sh deleted file mode 100755 index 2e56002..0000000 --- a/src/ceph/qa/qa_scripts/openstack/ceph_install_w_ansible/staller.sh +++ /dev/null @@ -1,15 +0,0 @@ -#! /bin/bash -cmd_wait=$1 -shift -sites=$* -donebit=0 -while [ $donebit -ne 1 ]; do - sleep 10 - donebit=1 - for rem in $sites; do - rval=`ssh $rem ps aux | grep $cmd_wait | wc -l` - if [ $rval -gt 0 ]; then - donebit=0 - fi - done -done