mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
bae9feacf2
To keep this commit comprehensible, 11.natgw and the CTDB CLI tool are temporarily inconsistent. The tool will be made consistent in a subsequent commit. ctdb_natgw_slave_only() is reimplemented to check for the option in the appropriate line in $CTDB_NATGW_NODES. Update unit tests and documentation. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
22 lines
381 B
Bash
Executable File
22 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "slave-only, CTDB_NATGW_PUBLIC_IFACE unset"
|
|
|
|
setup_ctdb
|
|
setup_ctdb_natgw <<EOF
|
|
192.168.1.21 slave-only
|
|
192.168.1.22 master
|
|
192.168.1.23
|
|
192.168.1.24
|
|
EOF
|
|
|
|
CTDB_NATGW_PUBLIC_IFACE=""
|
|
|
|
ok_null
|
|
simple_test_event "ipreallocated"
|
|
|
|
ok "default via ${FAKE_CTDB_NATGW_MASTER} dev ethXXX metric 10 "
|
|
simple_test_command ip route show
|