From: Christian Hofstaedtler Date: Fri, 15 Jul 2016 14:09:00 +0000 (+0200) Subject: API test: stop binding pdns_server to :: X-Git-Tag: auth-4.1.0-rc1~17^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f9f6493c677915e958ce557b250582e4f6bee40;p=thirdparty%2Fpdns.git API test: stop binding pdns_server to :: Avoids firewall warning on OS X, and is generally good. --- diff --git a/regression-tests.api/runtests.py b/regression-tests.api/runtests.py index 61f55744af..8435b5eee8 100755 --- a/regression-tests.api/runtests.py +++ b/regression-tests.api/runtests.py @@ -109,7 +109,7 @@ if daemon == 'authoritative': pdns_conf.write(AUTH_CONF_TPL) subprocess.check_call(PDNSUTIL_CMD + ["secure-zone", "powerdnssec.org"]) - pdnscmd = ("../pdns/pdns_server --daemon=no --local-address=127.0.0.1 --local-port=5300 --socket-dir=./ --no-shuffle --dnsupdate=yes --cache-ttl=0 --config-dir=. --api=yes --webserver-port="+WEBPORT+" --webserver-address=127.0.0.1 --api-key="+APIKEY).split() + pdnscmd = ("../pdns/pdns_server --daemon=no --local-address=127.0.0.1 --local-ipv6= --local-port=5300 --socket-dir=./ --no-shuffle --dnsupdate=yes --cache-ttl=0 --config-dir=. --api=yes --webserver-port="+WEBPORT+" --webserver-address=127.0.0.1 --api-key="+APIKEY).split() else: conf_dir = 'rec-conf.d'