mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +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)
22 lines
382 B
Bash
Executable File
22 lines
382 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "All IPs configured, takeip 1 address"
|
|
|
|
setup_ctdb
|
|
setup_ctdb_policy_routing
|
|
|
|
# configure all addresses
|
|
create_policy_routing_config all default
|
|
|
|
# add routes for all 1 IP
|
|
ctdb_get_1_public_address |
|
|
while read dev ip bits ; do
|
|
ok_null
|
|
simple_test_event "takeip" $dev $ip $bits
|
|
done
|
|
|
|
# for 1 IP
|
|
check_routes 1 default
|