mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
cfef702363
Less copying and pasting is a good thing... Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit 7d4b8cce96f33fff647a0c9d259c121dfc8403e9)
20 lines
390 B
Bash
Executable File
20 lines
390 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "missing config file"
|
|
|
|
setup_ctdb
|
|
setup_ctdb_policy_routing
|
|
|
|
# Error because policy routing is configured but the configuration
|
|
# file is missing.
|
|
required_result 1 <<EOF
|
|
error: CTDB_PER_IP_ROUTING_CONF=${CTDB_BASE}/policy_routing file not found
|
|
EOF
|
|
|
|
for i in "startup" "ipreallocated" "monitor" ; do
|
|
simple_test_event "$i"
|
|
done
|
|
|