blob: bd7f3022ca483a92ee4a1daab58c3d7fad467b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/sh
. "${TEST_SCRIPTS_DIR}/unit.sh"
define_test "Missing interface, CTDB_PARTIALLY_ONLINE_INTERFACES=yes, warn"
setup
setup_script_options <<EOF
CTDB_PARTIALLY_ONLINE_INTERFACES=yes
EOF
iface=$(ctdb_get_1_interface)
ip link delete "$iface"
ok <<EOF
ERROR: Monitored interface dev123 does not exist
EOF
simple_test
|