]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
API test: stop binding pdns_server to ::
authorChristian Hofstaedtler <christian.hofstaedtler@deduktiva.com>
Fri, 15 Jul 2016 14:09:00 +0000 (16:09 +0200)
committerChristian Hofstaedtler <christian.hofstaedtler@deduktiva.com>
Sun, 23 Jul 2017 13:28:39 +0000 (15:28 +0200)
Avoids firewall warning on OS X, and is generally good.

regression-tests.api/runtests.py

index 61f55744af3804b2760fa656819dda9d66c7a4cf..8435b5eee8021f49079f6737051d99e1a204cad2 100755 (executable)
@@ -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'