mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
0ca1cfcf61
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
31 lines
580 B
Bash
Executable File
31 lines
580 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "Single IP, restores original rt_tables"
|
|
|
|
setup
|
|
|
|
create_policy_routing_config 1 default
|
|
|
|
_rt_tables="$CTDB_SYS_ETCDIR/iproute2/rt_tables"
|
|
_rt_orig=$(mktemp --tmpdir="$EVENTSCRIPTS_TESTS_VAR_DIR")
|
|
cp "$_rt_tables" "$_rt_orig"
|
|
|
|
ctdb_get_1_public_address | {
|
|
read dev ip bits
|
|
|
|
ok_null
|
|
simple_test_event "takeip" $dev $ip $bits
|
|
|
|
ok <<EOF
|
|
Removing ip rule for public address ${ip} for routing table ctdb.${ip}
|
|
EOF
|
|
simple_test_event "shutdown"
|
|
}
|
|
|
|
ok_null
|
|
simple_test_command diff -u "$_rt_orig" "$_rt_tables"
|
|
|
|
check_routes 0
|