mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
Fix bug in adtrustinstance
Incorrect tuple unpacking in adtrustinstance was causing ipa-adtrust-install to fail when IPA was installed with no DNS. https://fedorahosted.org/freeipa/ticket/3746
This commit is contained in:
parent
ea7db35b62
commit
30e7579780
@ -535,9 +535,9 @@ class ADTRUSTInstance(service.Service):
|
||||
self.print_msg(err_msg)
|
||||
self.print_msg("Add the following service records to your DNS " \
|
||||
"server for DNS zone %s: " % zone)
|
||||
for (srv, rdata) in ipa_srv_rec:
|
||||
for srv in ipa_srv_rec:
|
||||
for suff in win_srv_suffix:
|
||||
self.print_msg(" - %s%s" % (srv, suff))
|
||||
self.print_msg(" - %s%s" % (srv[0], suff))
|
||||
return
|
||||
|
||||
for (srv, rdata, port) in ipa_srv_rec:
|
||||
|
Loading…
Reference in New Issue
Block a user