Fix printing of reverse zones in ipa-dns-install.

This was forgotten in patch for ticket
https://fedorahosted.org/freeipa/ticket/3575

Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
David Kupka 2014-10-15 09:24:20 -04:00 committed by Martin Kosek
parent c44f4dcbea
commit 47731f4584

View File

@ -154,8 +154,8 @@ def main():
reverse_zones = bindinstance.check_reverse_zones(ip_addresses,
options.reverse_zones, options, options.unattended, True)
if reverse_zones is not None:
print "Using reverse zone %s" % ', '.join(reverse_zones)
if reverse_zones:
print "Using reverse zone(s) %s" % ', '.join(reverse_zones)
conf_ntp = ntpinstance.NTPInstance(fstore).is_enabled()