mirror of
https://github.com/samba-team/samba.git
synced 2025-01-05 09:18:06 +03:00
a4bbc88cf1
(This used to be ctdb commit 6e6812641e3ce7afae7bd46ed317a885839fdd4f)
16 lines
559 B
Bash
Executable File
16 lines
559 B
Bash
Executable File
#!/bin/sh
|
|
|
|
killall -q ctdb_fetch
|
|
|
|
echo "Trying 2 nodes"
|
|
$VALGRIND bin/ctdb_fetch --nlist tests/nodes.txt --listen 127.0.0.2:9001 $* &
|
|
$VALGRIND bin/ctdb_fetch --nlist tests/nodes.txt --listen 127.0.0.1:9001 $*
|
|
wait
|
|
|
|
echo "Trying 4 nodes"
|
|
$VALGRIND bin/ctdb_fetch --nlist tests/4nodes.txt --listen 127.0.0.4:9001 $* &
|
|
$VALGRIND bin/ctdb_fetch --nlist tests/4nodes.txt --listen 127.0.0.3:9001 $* &
|
|
$VALGRIND bin/ctdb_fetch --nlist tests/4nodes.txt --listen 127.0.0.2:9001 $* &
|
|
$VALGRIND bin/ctdb_fetch --nlist tests/4nodes.txt --listen 127.0.0.1:9001 $*
|
|
wait
|