summaryrefslogtreecommitdiffstats
path: root/install/tools/ipa-dns-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-dns-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-dns-install')
-rwxr-xr-xinstall/tools/ipa-dns-install6
1 files changed, 1 insertions, 5 deletions
diff --git a/install/tools/ipa-dns-install b/install/tools/ipa-dns-install
index 47acd8de6..37a07f8e3 100755
--- a/install/tools/ipa-dns-install
+++ b/install/tools/ipa-dns-install
@@ -52,9 +52,6 @@ def parse_options():
parser.add_option("--zonemgr", action="callback", callback=bindinstance.zonemgr_callback,
type="string",
help="DNS zone manager e-mail address. Defaults to hostmaster@DOMAIN")
- parser.add_option("--no-serial-autoincrement", dest="serial_autoincrement",
- default=True, action="store_false",
- help="Do not enable SOA serial autoincrement")
parser.add_option("-U", "--unattended", dest="unattended", action="store_true",
default=False, help="unattended installation never prompts the user")
@@ -209,8 +206,7 @@ def main():
print ""
bind.setup(api.env.host, ip_address, api.env.realm, api.env.domain,
- dns_forwarders, conf_ntp, reverse_zone, zonemgr=options.zonemgr,
- serial_autoincrement=options.serial_autoincrement)
+ dns_forwarders, conf_ntp, reverse_zone, zonemgr=options.zonemgr)
bind.create_instance()
# Restart http instance to make sure that python-dns has the right resolver