mirror of
https://github.com/samba-team/samba.git
synced 2024-12-31 17:18:04 +03:00
8c5fdb40cf
Signed-off-by: Martin Schwenke <martin@meltin.net> (This used to be ctdb commit 4c87888b2a559c0d1f285919a42de450a537a02f)
22 lines
332 B
Bash
Executable File
22 lines
332 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. "${TEST_SCRIPTS_DIR}/unit.sh"
|
|
|
|
cmd="$ONNODE natgw hostname"
|
|
|
|
define_test "$cmd" "no natgw"
|
|
|
|
ctdb_set_output <<EOF
|
|
-1 0.0.0.0
|
|
:0:192.168.1.101:0:0:0:0:0:
|
|
:1:192.168.1.102:0:0:0:0:0:
|
|
:2:192.168.1.103:0:0:0:0:0:
|
|
:3:192.168.1.104:0:0:0:0:0:
|
|
EOF
|
|
|
|
required_result 1 <<EOF
|
|
onnode: No natgwlist available
|
|
EOF
|
|
|
|
simple_test $cmd
|