mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
8c81fb9d9a
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
19 lines
299 B
Bash
Executable File
19 lines
299 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "Check public IP dropping, 1 assigned"
|
|
|
|
setup
|
|
|
|
ctdb_get_1_public_address |
|
|
while read dev ip bits ; do
|
|
ip addr add "${ip}/${bits}" dev "$dev"
|
|
|
|
ok <<EOF
|
|
Removing public address ${ip}/${bits} from device ${dev}
|
|
EOF
|
|
|
|
simple_test
|
|
done
|