mirror of
https://github.com/samba-team/samba.git
synced 2025-01-26 10:04:02 +03:00
87b49c913f
This drastically simplifies the code. "ctdb reloadips" behaves the same, since it causes a takeover run immediately after IPs are deleted. "ctdb delip" now needs to be followed with an explicit "ctdb ipreallocate". Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
30 lines
625 B
Bash
Executable File
30 lines
625 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Verify that a node's public IP address can be deleted using 'ctdb deleteip'.
|
|
|
|
This test does not do any network level checks to make sure IP
|
|
addresses are actually on interfaces. It just consults "ctdb ip".
|
|
EOF
|
|
}
|
|
|
|
. "${TEST_SCRIPTS_DIR}/integration.bash"
|
|
|
|
ctdb_test_init "$@"
|
|
|
|
set -e
|
|
|
|
cluster_is_healthy
|
|
|
|
# Reset configuration
|
|
ctdb_restart_when_done
|
|
|
|
select_test_node_and_ips
|
|
|
|
echo "Deleting IP ${test_ip} from node ${test_node}"
|
|
try_command_on_node $test_node $CTDB delip $test_ip
|
|
try_command_on_node $test_node $CTDB ipreallocate
|
|
wait_until_ips_are_on_node '!' $test_node $test_ip
|