mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
c5538a464f
Update the implementation of "ctdb xpnn" and "ctdb listnodes" accordingly. Update associated tests too. Signed-off-by: Martin Schwenke <martin@meltin.net> Reviewed-by: Amitay Isaacs <amitay@gmail.com>
25 lines
381 B
Bash
Executable File
25 lines
381 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "missing nodes file"
|
|
|
|
setup_nodes <<EOF
|
|
192.168.20.41
|
|
192.168.20.42
|
|
192.168.20.43
|
|
EOF
|
|
|
|
rm -f "$CTDB_NODES"
|
|
|
|
required_result 255 <<EOF
|
|
${TEST_DATE_STAMP}Failed to read nodes file "${CTDB_NODES}"
|
|
EOF
|
|
|
|
simple_test <<EOF
|
|
NODEMAP
|
|
0 192.168.20.41 0x0 CURRENT
|
|
1 192.168.20.42 0x0
|
|
2 192.168.20.43 0x0
|
|
EOF
|