blob: 2fc75b731b9ebeed75900cddf8c1ba8c1dfc77b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#!/usr/bin/env bash
# Verify that 'ctdb ip' shows the correct output
. "${TEST_SCRIPTS_DIR}/integration.bash"
set -e
ctdb_test_init
echo "Getting list of public IPs..."
try_command_on_node -v 1 "$CTDB ip all | tail -n +2"
ips=$(sed \
-e 's@ node\[@ @' \
-e 's@\].*$@@' \
"$outfile")
machineout=$(sed -r \
-e 's@^| |$@\|@g' \
-e 's@[[:alpha:]]+\[@@g' \
-e 's@\]@@g' \
"$outfile")
if ctdb_test_on_cluster ; then
while read ip pnn ; do
try_command_on_node $pnn "ip addr show to ${ip}"
if [ -n "$out" ] ; then
echo "GOOD: node $pnn appears to have $ip assigned"
else
die "BAD: node $pnn does not appear to have $ip assigned"
fi
done <<<"$ips" # bashism to avoid problem setting variable in pipeline.
fi
echo "Looks good!"
cmd="$CTDB -X ip all | tail -n +2"
echo "Checking that \"$cmd\" produces expected output..."
try_command_on_node 1 "$cmd"
if [ "$out" = "$machineout" ] ; then
echo "Yep, looks good!"
else
echo "Nope, it looks like this:"
echo "$out"
echo "Should be like this:"
echo "$machineout"
exit 1
fi
|