1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00
samba-mirror/ctdb/tests/simple/00_ctdb_onnode.sh

39 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
test_info()
{
cat <<EOF
Use 'onnode' to confirm connectivity between all cluster nodes.
Steps:
1. Do a recursive "onnode all" to make sure all the nodes can connect
to each other. On a cluster this ensures that SSH keys are known
between all hosts, which will stop output being corrupted with
messages about nodes being added to the list of known hosts.
Expected results:
* 'onnode' works between all nodes.
EOF
}
. ctdb_test_functions.bash
ctdb_test_init "$@"
#
echo "Checking connectivity between nodes..."
onnode all onnode all true
# We're seeing some weirdness with CTDB controls timing out. We're
# wondering if time is jumping forward, so this creates a time log on
# each node that we can examine later if tests fail weirdly.
if [ -n "$CTDB_TEST_REAL_CLUSTER" -a -n "$CTDB_TEST_TIME_LOGGING" ] ; then
echo "Starting time logging on each node..."
f="/var/log/ctdb.test.time.log"
onnode -p all "[ -f $f ] || while : ; do date '+%s %N' ; sleep 1 ; done >$f 2>&1 </dev/null &" &
fi