mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
eafa12ec22
Signed-off-by: Amitay Isaacs <amitay@gmail.com> Reviewed-by: Martin Schwenke <martin@meltin.net>
30 lines
409 B
Bash
Executable File
30 lines
409 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
define_test "3 nodes, add a 3 nodes"
|
|
|
|
setup_nodes <<EOF
|
|
192.168.20.41
|
|
192.168.20.42
|
|
192.168.20.43
|
|
192.168.20.44
|
|
192.168.20.45
|
|
192.168.20.46
|
|
EOF
|
|
|
|
setup_ctdbd <<EOF
|
|
NODEMAP
|
|
0 192.168.20.41 0x0 CURRENT RECMASTER
|
|
1 192.168.20.42 0x0
|
|
2 192.168.20.43 0x0
|
|
EOF
|
|
|
|
required_result 0 <<EOF
|
|
Node 3 is NEW
|
|
Node 4 is NEW
|
|
Node 5 is NEW
|
|
EOF
|
|
|
|
simple_test
|