mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
497ae563a0
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
27 lines
472 B
Bash
Executable File
27 lines
472 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_info()
|
|
{
|
|
cat <<EOF
|
|
Check that CTDB operated correctly if there are 0 event scripts
|
|
|
|
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
|
|
|
|
ctdb_test_init --no-event-scripts
|
|
|
|
cluster_is_healthy
|
|
|
|
echo "Good, that seems to work!"
|