mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
a63c456080
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
25 lines
356 B
Bash
Executable File
25 lines
356 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "missing config file"
|
|
|
|
setup
|
|
|
|
setup_ctdb_natgw <<EOF
|
|
192.168.1.21 master
|
|
192.168.1.22
|
|
192.168.1.23
|
|
192.168.1.24
|
|
EOF
|
|
|
|
rm -f "$CTDB_NATGW_NODES"
|
|
|
|
required_result 1 <<EOF
|
|
error: CTDB_NATGW_NODES=${CTDB_NATGW_NODES} unreadable
|
|
EOF
|
|
|
|
for i in "startup" "ipreallocated" ; do
|
|
simple_test_event "$i"
|
|
done
|