mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
cfef702363
Less copying and pasting is a good thing... Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit 7d4b8cce96f33fff647a0c9d259c121dfc8403e9)
21 lines
416 B
Bash
Executable File
21 lines
416 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "__auto_link_local__, takeip all on node"
|
|
|
|
setup_ctdb
|
|
setup_ctdb_policy_routing
|
|
|
|
# do link local fu instead of creating configuration
|
|
export CTDB_PER_IP_ROUTING_CONF="__auto_link_local__"
|
|
|
|
# add routes for all addresses
|
|
ctdb_get_my_public_addresses |
|
|
while read dev ip bits ; do
|
|
ok_null
|
|
simple_test_event "takeip" $dev $ip $bits
|
|
done
|
|
|
|
check_routes all
|