remove ceph code
[stor4nfv.git] / src / ceph / qa / qa_scripts / openstack / ceph_install_w_ansible / staller.sh
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 (executable)
index 2e56002..0000000
+++ /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