mirror of
https://github.com/NLnetLabs/unbound.git
synced 2026-09-08 19:07:41 +02:00
14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
# source the master var file when it's there
|
|
[ -f ../.tpkg.var.master ] && source ../.tpkg.var.master
|
|
# use .tpkg.var.test for in test variable passing
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|
|
|
|
. ../common.sh
|
|
|
|
# only do this test if the network is up.
|
|
if dig @k.root-servers.net . SOA 2>&1 | grep NOERROR ; then
|
|
:
|
|
else
|
|
skip_test "network is not up"
|
|
fi
|