mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
29b7825dcf
Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
66 lines
1.1 KiB
Bash
Executable File
66 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "3 nodes, no LVS, current disconnected"
|
|
|
|
setup_nodes <<EOF
|
|
192.168.20.41
|
|
192.168.20.42
|
|
192.168.20.43
|
|
EOF
|
|
|
|
setup_lvs <<EOF
|
|
EOF
|
|
|
|
setup_ctdbd <<EOF
|
|
NODEMAP
|
|
0 192.168.20.41 0x1 CURRENT RECMASTER
|
|
1 192.168.20.42 0x0
|
|
2 192.168.20.43 0x0
|
|
EOF
|
|
|
|
#####
|
|
|
|
required_result 1 <<EOF
|
|
connect() failed, errno=2
|
|
Failed to connect to CTDB daemon ($ctdbd_socket)
|
|
Failed to detect PNN of the current node.
|
|
Is this node part of CTDB cluster?
|
|
EOF
|
|
|
|
simple_test list
|
|
|
|
#####
|
|
|
|
required_result 1 <<EOF
|
|
connect() failed, errno=2
|
|
Failed to connect to CTDB daemon ($ctdbd_socket)
|
|
Failed to detect PNN of the current node.
|
|
Is this node part of CTDB cluster?
|
|
EOF
|
|
|
|
simple_test master
|
|
|
|
#####
|
|
|
|
required_result 1 <<EOF
|
|
connect() failed, errno=2
|
|
Failed to connect to CTDB daemon ($ctdbd_socket)
|
|
Failed to detect PNN of the current node.
|
|
Is this node part of CTDB cluster?
|
|
EOF
|
|
|
|
simple_test list
|
|
|
|
#####
|
|
|
|
required_result 1 <<EOF
|
|
connect() failed, errno=2
|
|
Failed to connect to CTDB daemon ($ctdbd_socket)
|
|
Failed to detect PNN of the current node.
|
|
Is this node part of CTDB cluster?
|
|
EOF
|
|
|
|
simple_test status
|