summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-server-install
diff options
context:
space:
mode:
authorMartin Kosek <mkosek@redhat.com>2013-10-09 16:13:19 +0200
committerMartin Kosek <mkosek@redhat.com>2013-10-11 09:47:59 +0200
commitcb9331ebfcc33ad676b6d188156a6d56b2996a18 (patch)
tree9f07da1d1c6de28f4ffe65a784dea72e773c8adf /install/tools/ipa-server-install
parent5e8aab8558874a9a826a1c470e806c75fb84eef2 (diff)
downloadfreeipa-cb9331ebfcc33ad676b6d188156a6d56b2996a18.tar.gz
freeipa-cb9331ebfcc33ad676b6d188156a6d56b2996a18.tar.xz
freeipa-cb9331ebfcc33ad676b6d188156a6d56b2996a18.zip
Remove --no-serial-autoincrement
Deprecate this option and do not offer it in installation tools. Without this option enabled, advanced DNS features like DNSSEC would not work. https://fedorahosted.org/freeipa/ticket/3962
Diffstat (limited to 'install/tools/ipa-server-install')
-rw-r--r--install/tools/ipa-server-install4
1 files changed, 0 insertions, 4 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install
index 8077bc207..b871ef3f2 100644
--- a/install/tools/ipa-server-install
+++ b/install/tools/ipa-server-install
@@ -212,9 +212,6 @@ def parse_options():
help="Do not use DNS for hostname lookup during installation")
dns_group.add_option("--no-dns-sshfp", dest="create_sshfp", default=True, action="store_false",
help="Do not automatically create DNS SSHFP records")
- dns_group.add_option("--no-serial-autoincrement", dest="serial_autoincrement",
- default=True, action="store_false",
- help="Do not enable SOA serial autoincrement")
parser.add_option_group(dns_group)
uninstall_group = OptionGroup(parser, "uninstall options")
@@ -1181,7 +1178,6 @@ def main():
bind = bindinstance.BindInstance(fstore, dm_password)
bind.setup(host_name, ip_address, realm_name, domain_name, dns_forwarders,
options.conf_ntp, reverse_zone, zonemgr=options.zonemgr,
- serial_autoincrement=options.serial_autoincrement,
ca_configured=setup_ca)
if options.setup_dns:
api.Backend.ldap2.connect(bind_dn=DN(('cn', 'Directory Manager')), bind_pw=dm_password)