1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00
samba-mirror/ctdb/tests/INTEGRATION/simple/cluster.002.ban_leader_yield.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
537 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# Verify that 'ctdb ban' causes a node to yield the leader role
. "${TEST_SCRIPTS_DIR}/integration.bash"
set -e
ctdb_test_init
# This is the node used to execute commands
select_test_node
echo
# test_node set by select_test_node()
# shellcheck disable=SC2154
leader_get "$test_node"
# leader set by leader_get()
# shellcheck disable=SC2154
echo "Banning leader ${leader}..."
ctdb_onnode "$test_node" ban 300 -n "$leader"
wait_until_node_has_status "$leader" banned
wait_until_leader_has_changed "$test_node"