blob: 34f82e981a187b32111377a1f48afd01d82d1761 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/bash
test_info()
{
cat <<EOF
Check that CTDB operates correctly if the recovery lock is configured
as a command.
This test only does anything with local daemons. On a real cluster it
has no way of updating configuration.
EOF
}
. "${TEST_SCRIPTS_DIR}/integration.bash"
set -e
if [ -z "$TEST_LOCAL_DAEMONS" ] ; then
echo "SKIPPING this test - only runs against local daemons"
exit 0
fi
echo "Starting CTDB with recovery lock command configured..."
ctdb_test_init --reclock-use-command
cluster_is_healthy
echo "Good, that seems to work!"
|