Merge #136: Tools: Blacklist BIND 9.17+ for Windows

bdd1c00 Tools: Blacklist BIND 9.17+ for Windows (Jeremy Rand)

Pull request description:

  Upstream ISC no longer supports Windows as of BIND 9.17 branch.
pull/142/head
Jeremy Rand 3 years ago
commit 9493698e02
No known key found for this signature in database
GPG Key ID: EB03139A459DD06E

@ -91,7 +91,9 @@ done
# ncdns-nsis dependencies
BIND_VERSION=$(./rbm/rbm showconf ncdns-nsis var/bind_version)
LATEST_BIND_VERSION=$(curl https://ftp.isc.org/isc/bind/ | grep --only-matching '"[0-9]*\.[0-9]*\.[0-9]*/"' | tail --lines=1 | grep --only-matching '[0-9]*\.[0-9]*\.[0-9]*')
# As per https://www.isc.org/download/#BIND , "9.16.x is the last branch of
# BIND with native Windows support."
LATEST_BIND_VERSION=$(curl https://ftp.isc.org/isc/bind/ | grep --only-matching '"[0-9]*\.[0-9]*\.[0-9]*/"' | grep '9\.16' | tail --lines=1 | grep --only-matching '[0-9]*\.[0-9]*\.[0-9]*')
if [ "${BIND_VERSION}" != "${LATEST_BIND_VERSION}" ]
then

Loading…
Cancel
Save