mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
0ca1cfcf61
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
19 lines
359 B
Bash
Executable File
19 lines
359 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "missing config file"
|
|
|
|
setup
|
|
|
|
# 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
|
|
|