2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

tsiggss test needed a prereq.sh file. (Committing without review because

the script is simple, no one is available, and I want to shut robie up.)
This commit is contained in:
Evan Hunt
2010-12-18 16:48:41 +00:00
parent ec310af18b
commit 6c3eff861d

View File

@@ -0,0 +1,11 @@
#!/bin/sh
TOP=${SYSTEMTESTTOP:=.}/../../../..
# enable the tsiggss test only if gssapi was enabled
$TOP/bin/named/named -V | grep with.gssapi | grep -v with-gssapi=no > /dev/null || {
echo "I:BIND9 was not built with --with-gssapi"
exit 1
}
exit 0