mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
a3fd8ddf35
This hasn't been required for a long time and is probably broken. If it is needed in future then we know where to find it. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Michael Adam <obnox@samba.org>
30 lines
594 B
Bash
Executable File
30 lines
594 B
Bash
Executable File
#!/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
|
|
}
|
|
|
|
. "${TEST_SCRIPTS_DIR}/integration.bash"
|
|
|
|
ctdb_test_init "$@"
|
|
|
|
|
|
#
|
|
|
|
echo "Checking connectivity between nodes..."
|
|
onnode all onnode -p all hostname
|