2024-07-06 13:36:48 +00:00
|
|
|
# shellcheck source=../../utils/with-1-data-1-empty-node-network.sh
|
|
|
|
source "$UTILS"/with-1-data-1-empty-node-network.sh
|
2023-09-06 19:55:05 +00:00
|
|
|
|
|
|
|
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
|