mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-22 07:41:16 -05:00
12 lines
327 B
Text
12 lines
327 B
Text
|
|
# #-- root_hints.pre --#
|
||
|
|
# 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
|
||
|
|
|
||
|
|
# dig 9 ?
|
||
|
|
digv=`dig -v 2>&1 | wc -l`
|
||
|
|
if test $digv -ne 1; then
|
||
|
|
skip_test "Dig too old. skip test"
|
||
|
|
fi
|