mirror of
https://github.com/samba-team/samba.git
synced 2025-01-25 06:04:04 +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>
26 lines
388 B
Bash
Executable File
26 lines
388 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "master node, no gateway"
|
|
|
|
setup_ctdb
|
|
|
|
setup_ctdb_natgw <<EOF
|
|
192.168.1.21 master
|
|
192.168.1.22
|
|
192.168.1.23
|
|
192.168.1.24
|
|
EOF
|
|
|
|
CTDB_NATGW_DEFAULT_GATEWAY=""
|
|
|
|
ok_null
|
|
simple_test_event "ipreallocated"
|
|
|
|
ok_null
|
|
simple_test_command ip route show
|
|
|
|
ok_natgw_master_ip_addr_show
|
|
simple_test_command ip addr show "$CTDB_NATGW_PUBLIC_IFACE"
|