mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
7fdd6b7861
This includes adding support for: * Configuring fake NATGW state in the eventscript unit tests * "natgwlist" and "setnatgwstate" in ctdb command stub * ip command stub to default to "main table" when no table specified, allow routes to be added without "dev" option (just add a default dev), support "metric" option Signed-off-by: Martin Schwenke <martin@meltin.net>
24 lines
422 B
Bash
Executable File
24 lines
422 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "slave node, basic configuration"
|
|
|
|
setup_ctdb
|
|
|
|
setup_ctdb_natgw <<EOF
|
|
192.168.1.21
|
|
192.168.1.22 master
|
|
192.168.1.23
|
|
192.168.1.24
|
|
EOF
|
|
|
|
ok_null
|
|
simple_test_event "ipreallocated"
|
|
|
|
ok "default via ${FAKE_CTDB_NATGW_MASTER} dev ethXXX metric 10 "
|
|
simple_test_command ip route show
|
|
|
|
ok_natgw_slave_ip_addr_show
|
|
simple_test_command ip addr show "$CTDB_NATGW_PUBLIC_IFACE"
|