mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix DNSSEC test: add glue record
Missing glue record causes test failure in cases when DNS zone was not managed by IPA DNS Reviewed-By: Petr Spacek <pspacek@redhat.com>
This commit is contained in:
parent
6896035af2
commit
cdf08a0a86
@ -275,7 +275,14 @@ class TestInstallDNSSECFirst(IntegrationTest):
|
|||||||
]
|
]
|
||||||
self.master.run_command(args)
|
self.master.run_command(args)
|
||||||
|
|
||||||
# make BIND happy, and delegate zone which contains A record of master
|
# make BIND happy: add the glue record and delegate zone
|
||||||
|
args = [
|
||||||
|
"ipa", "dnsrecord-add", root_zone, self.master.domain.name,
|
||||||
|
"--a-rec=" + self.master.ip
|
||||||
|
]
|
||||||
|
self.master.run_command(args)
|
||||||
|
time.sleep(10) # sleep a bit until data are provided by bind-dyndb-ldap
|
||||||
|
|
||||||
args = [
|
args = [
|
||||||
"ipa", "dnsrecord-add", root_zone, self.master.domain.name,
|
"ipa", "dnsrecord-add", root_zone, self.master.domain.name,
|
||||||
"--ns-rec=" + self.master.hostname
|
"--ns-rec=" + self.master.hostname
|
||||||
|
Loading…
Reference in New Issue
Block a user