blob: d043c7e26150b75e5e8eb7867224f786db687a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env bash
# Check that CTDB operates correctly if the recovery lock is configured
# as a command.
# This test works only with local daemons. On a real cluster it has
# no way of updating configuration.
. "${TEST_SCRIPTS_DIR}/integration.bash"
set -e
ctdb_test_skip_on_cluster
ctdb_test_init -n
echo "Starting CTDB with recovery lock command configured..."
ctdb_nodes_start_custom -R
echo "Good, that seems to work!"
|