blob: a27062ed055ef73c05548c6129a4042bd54d8774 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/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
required_result 1 <<EOF
Interface eth0 not configured on node 0
EOF
simple_test eth0 down
|