18 lines
490 B
Bash
18 lines
490 B
Bash
# shellcheck source=../../utils/with-1-data-1-empty-node-network.sh
|
|
source "$UTILS"/with-1-data-1-empty-node-network.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
|
|
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
|