mirror of
https://github.com/samba-team/samba.git
synced 2025-02-09 09:57:48 +03:00
Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
30 lines
546 B
Bash
Executable File
30 lines
546 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "invalid interface"
|
|
|
|
setup_ctdbd <<EOF
|
|
NODEMAP
|
|
0 192.168.20.41 0x0 CURRENT RECMASTER
|
|
1 192.168.20.42 0x0
|
|
2 192.168.20.43 0x0
|
|
|
|
IFACES
|
|
:Name:LinkStatus:References:
|
|
:eth2:1:2:
|
|
:eth1:0:4:
|
|
EOF
|
|
|
|
result_filter ()
|
|
{
|
|
sed -e 's|^[^:]*:[0-9][0-9]* |FILE:LINE |'
|
|
}
|
|
|
|
required_result 1 <<EOF
|
|
ctdb_control error: 'interface not found'
|
|
FILE:LINE ctdb_control for set iface link failed ret:-1 res:-1
|
|
Unable to set link state for interfaces eth0 node 0
|
|
EOF
|
|
simple_test eth0 down
|