mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
10 lines
201 B
Bash
10 lines
201 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
killall -q ctdb_bench
|
||
|
|
||
|
echo "Trying 2 nodes"
|
||
|
bin/ctdb_bench --nlist nodes.txt --listen 127.0.0.2:9001 $* &
|
||
|
bin/ctdb_bench --nlist nodes.txt --listen 127.0.0.1:9001 $*
|
||
|
|
||
|
killall -q ctdb_bench
|