summaryrefslogtreecommitdiff
path: root/source4/cluster/ctdb/tests/fetch.sh
diff options
context:
space:
mode:
Diffstat (limited to 'source4/cluster/ctdb/tests/fetch.sh')
-rwxr-xr-xsource4/cluster/ctdb/tests/fetch.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/source4/cluster/ctdb/tests/fetch.sh b/source4/cluster/ctdb/tests/fetch.sh
deleted file mode 100755
index 325957e63f..0000000000
--- a/source4/cluster/ctdb/tests/fetch.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-NUMNODES=2
-if [ $# -gt 0 ]; then
- NUMNODES=$1
-fi
-
-rm -f nodes.txt
-for i in `seq 1 $NUMNODES`; do
- echo 127.0.0.$i >> nodes.txt
-done
-
-tests/start_daemons.sh $NUMNODES nodes.txt || exit 1
-
-
-killall -9 -q ctdb_fetch
-for i in `seq 1 $NUMNODES`; do
- $VALGRIND bin/ctdb_fetch --socket sock.$i -n $NUMNODES $* &
-done
-wait
-
-echo "Shutting down"
-bin/ctdb shutdown -n all --socket=sock.1
-exit 0