dnssec system test: Remove RSAMD5 usage and make script shellcheck compliant

This commit is contained in:
Ondřej Surý
2018-11-21 22:21:16 +01:00
parent a160fecaa1
commit ca7cadfa92
13 changed files with 1914 additions and 1899 deletions

View File

@@ -9,12 +9,13 @@
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.
SYSTEMTESTTOP=..
. $SYSTEMTESTTOP/conf.sh
# shellcheck source=conf.sh
. "$SYSTEMTESTTOP/conf.sh"
if $PERL -e 'use Net::DNS;' 2>/dev/null
if "$PERL" -e 'use Net::DNS;' 2>/dev/null
then
if $PERL -e 'use Net::DNS; die if ($Net::DNS::VERSION >= 0.69 && $Net::DNS::VERSION <= 0.70);' 2>/dev/null
# shellcheck disable=SC2016
if "$PERL" -e 'use Net::DNS; die if ($Net::DNS::VERSION >= 0.69 && $Net::DNS::VERSION <= 0.70);' 2>/dev/null
then
:
else