mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
9a2910c60b
Arguments are currently ignored anyway. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
29 lines
563 B
Bash
Executable File
29 lines
563 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Verify the operation of "ctdb stop" and "ctdb continue"
|
|
EOF
|
|
}
|
|
|
|
. "${TEST_SCRIPTS_DIR}/integration.bash"
|
|
|
|
ctdb_test_init
|
|
|
|
set -e
|
|
|
|
cluster_is_healthy
|
|
|
|
select_test_node_and_ips
|
|
|
|
echo "Stopping node ${test_node}..."
|
|
try_command_on_node 1 $CTDB stop -n $test_node
|
|
wait_until_node_has_status $test_node stopped
|
|
wait_until_node_has_no_ips "$test_node"
|
|
|
|
echo "Continuing node $test_node"
|
|
try_command_on_node 1 $CTDB continue -n $test_node
|
|
wait_until_node_has_status $test_node notstopped
|
|
wait_until_node_has_some_ips "$test_node"
|