summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-server-install
diff options
context:
space:
mode:
authorJakub Hrozek <jhrozek@redhat.com>2010-11-11 19:27:27 +0100
committerSimo Sorce <ssorce@redhat.com>2010-12-02 16:46:02 -0500
commit88188cbb2050d4488df443a3f44454dd1867941f (patch)
tree146d5bfd5af651bfb68cffc25a535a4d850515d2 /install/tools/ipa-server-install
parenta41e69fba360d7cfc83e8592528562e06573533b (diff)
downloadfreeipa-88188cbb2050d4488df443a3f44454dd1867941f.tar.gz
freeipa-88188cbb2050d4488df443a3f44454dd1867941f.tar.xz
freeipa-88188cbb2050d4488df443a3f44454dd1867941f.zip
Do not create reverse zone by default
Prompt for creation of reverse zone, with the default for unattended installations being False. https://fedorahosted.org/freeipa/ticket/418
Diffstat (limited to 'install/tools/ipa-server-install')
-rwxr-xr-xinstall/tools/ipa-server-install3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install
index 2cc590ed3..020fc8ff8 100755
--- a/install/tools/ipa-server-install
+++ b/install/tools/ipa-server-install
@@ -822,7 +822,8 @@ def main():
# Create a BIND instance
bind = bindinstance.BindInstance(fstore, dm_password)
- bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders, options.conf_ntp, zonemgr=options.zonemgr)
+ create_reverse = bindinstance.create_reverse(options.unattended)
+ bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders, options.conf_ntp, create_reverse, zonemgr=options.zonemgr)
if options.setup_dns:
api.Backend.ldap2.connect(bind_dn="cn=Directory Manager", bind_pw=dm_password)