summaryrefslogtreecommitdiff
path: root/ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh')
-rwxr-xr-xctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh30
1 files changed, 30 insertions, 0 deletions
diff --git a/ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh b/ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh
new file mode 100755
index 00000000000..c0bb62d1991
--- /dev/null
+++ b/ctdb/tests/INTEGRATION/failover/pubips.030.disable_enable.sh
@@ -0,0 +1,30 @@
+#!/bin/bash
+
+test_info()
+{
+ cat <<EOF
+Verify the operation of "ctdb disable" and "ctdb enable"
+EOF
+}
+
+. "${TEST_SCRIPTS_DIR}/integration.bash"
+
+ctdb_test_init
+
+########################################
+
+set -e
+
+cluster_is_healthy
+
+select_test_node_and_ips
+
+echo "Disabling node $test_node"
+try_command_on_node 1 $CTDB disable -n $test_node
+wait_until_node_has_status $test_node disabled
+wait_until_node_has_no_ips "$test_node"
+
+echo "Re-enabling node $test_node"
+try_command_on_node 1 $CTDB enable -n $test_node
+wait_until_node_has_status $test_node enabled
+wait_until_node_has_some_ips "$test_node"