diff options
Diffstat (limited to 'qpid/cpp/src/tests/stop_cluster')
-rwxr-xr-x | qpid/cpp/src/tests/stop_cluster | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/qpid/cpp/src/tests/stop_cluster b/qpid/cpp/src/tests/stop_cluster deleted file mode 100755 index 6afcb527e5..0000000000 --- a/qpid/cpp/src/tests/stop_cluster +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -# Stop brokers on ports listed in cluster.ports - - -PORTS=`cat cluster.ports` -for PORT in $PORTS ; do - ../qpidd -qp $PORT || ERROR="$ERROR $PORT" -done -rm -f cluster.ports - -if [ -n "$ERROR" ]; then - echo "Errors stopping brokers on ports: $ERROR" - exit 1 -fi |