21 lines
643 B
Bash
21 lines
643 B
Bash
|
# shellcheck source=../../utils/with-1-data-1-empty-node-cluster.sh
|
||
|
source "$UTILS"/with-1-data-1-empty-node-cluster.sh
|
||
|
|
||
|
function assert_a {
|
||
|
want_ip="$1"
|
||
|
hostname="$2"
|
||
|
r="$(dig @"$current_ip" +noall +answer "$hostname")"
|
||
|
echo "$r" | grep -q "$want_ip"
|
||
|
}
|
||
|
|
||
|
as_primus
|
||
|
assert_a "$primus_ip" primus.hosts.shared.test
|
||
|
|
||
|
# TODO This doesn't work at present, there would need to be some mechanism to
|
||
|
# block the test until secondus' bootstrap info can propagate to primus.
|
||
|
#assert_a "$secondus_ip" secondus.hosts.shared.test
|
||
|
|
||
|
as_secondus
|
||
|
assert_a "$primus_ip" primus.hosts.shared.test
|
||
|
assert_a "$secondus_ip" secondus.hosts.shared.test
|