mirror of
https://github.com/samba-team/samba.git
synced 2025-02-09 09:57:48 +03:00
* Use "#!/usr/bin/env bash" for improved portability * Drop test_info() definition and replace it with a comment The use of test_info() is pointless. * Drop call to cluster_is_healthy() This is a holdover from when the previous test would restart daemons to get things ready for a test. There was also a bug where going into recovery during the restart would sometimes cause the cluster to become unhealthy. If we really need something like this then we can add it to ctdb_test_init(). * Make order of preamble consistent Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
30 lines
706 B
Bash
Executable File
30 lines
706 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Verify that 'ctdb stop' causes a node to yield the recovery master role
|
|
|
|
. "${TEST_SCRIPTS_DIR}/integration.bash"
|
|
|
|
set -e
|
|
|
|
ctdb_test_init
|
|
|
|
echo "Finding out which node is the recovery master..."
|
|
try_command_on_node -v 0 "$CTDB recmaster"
|
|
test_node=$out
|
|
|
|
echo "Stopping node ${test_node} - it is the current recmaster..."
|
|
try_command_on_node 1 $CTDB stop -n $test_node
|
|
|
|
wait_until_node_has_status $test_node stopped
|
|
|
|
echo "Checking which node is the recovery master now..."
|
|
try_command_on_node -v 0 "$CTDB recmaster"
|
|
recmaster=$out
|
|
|
|
if [ "$recmaster" != "$test_node" ] ; then
|
|
echo "OK: recmaster moved to node $recmaster"
|
|
else
|
|
echo "BAD: recmaster did not move"
|
|
exit 1
|
|
fi
|