mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
185cd326da
add code to actually pass the messages between clients and ctdb (This used to be ctdb commit 6d5b55d7b9c611fb5e98765906757a7d82e4bf6b)
10 lines
213 B
Bash
Executable File
10 lines
213 B
Bash
Executable File
#!/bin/sh
|
|
|
|
killall -q ctdb_bench
|
|
|
|
echo "Trying 2 nodes"
|
|
bin/ctdb_bench --nlist tests/nodes.txt --listen 127.0.0.2:9001 $* &
|
|
bin/ctdb_bench --nlist tests/nodes.txt --listen 127.0.0.1:9001 $*
|
|
|
|
killall -q ctdb_bench
|