From 247adec0cd9645ecc51bd20472f194d125e1ce2d Mon Sep 17 00:00:00 2001 From: Otto Moerbeek Date: Fri, 21 Jun 2019 10:47:09 +0200 Subject: [PATCH] Fix config template and remove old root trust anchor --- regression-tests.recursor-dnssec/test_TrustAnchors.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/regression-tests.recursor-dnssec/test_TrustAnchors.py b/regression-tests.recursor-dnssec/test_TrustAnchors.py index df61345b39..f44497881a 100644 --- a/regression-tests.recursor-dnssec/test_TrustAnchors.py +++ b/regression-tests.recursor-dnssec/test_TrustAnchors.py @@ -10,8 +10,10 @@ class testTrustAnchorsEnabled(RecursorTest): _confdir = 'TrustAnchorsEnabled' _roothints = None _root_DS = None + _config_template = """ + allow-trust-anchor-query=yes +""" _lua_config_file = """ - allow-trust-anchor-query=yes addDS("powerdns.com", "44030 8 1 B763646757DF621DD1204AD3BFA0675B49BE3279") addNTA("example") addNTA("example.com", "some reason") @@ -20,7 +22,7 @@ addNTA("example.com", "some reason") def testTrustanchorDotServer(self): expected = dns.rrset.from_text_list( 'trustanchor.server.', 86400, dns.rdataclass.CH, 'TXT', - ['". 19036 20326"', '"powerdns.com. 44030"']) + ['". 20326"', '"powerdns.com. 44030"']) query = dns.message.make_query('trustanchor.server', 'TXT', dns.rdataclass.CH) result = self.sendUDPQuery(query) -- 2.47.2