diff options
author | Martin Kosek <mkosek@redhat.com> | 2013-10-09 16:13:19 +0200 |
---|---|---|
committer | Martin Kosek <mkosek@redhat.com> | 2013-10-11 09:47:59 +0200 |
commit | cb9331ebfcc33ad676b6d188156a6d56b2996a18 (patch) | |
tree | 9f07da1d1c6de28f4ffe65a784dea72e773c8adf /ipaserver/install | |
parent | 5e8aab8558874a9a826a1c470e806c75fb84eef2 (diff) | |
download | freeipa-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 'ipaserver/install')
-rw-r--r-- | ipaserver/install/bindinstance.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/ipaserver/install/bindinstance.py b/ipaserver/install/bindinstance.py index 2d4da0871..6d5a1d44d 100644 --- a/ipaserver/install/bindinstance.py +++ b/ipaserver/install/bindinstance.py @@ -463,7 +463,7 @@ class BindInstance(service.Service): def setup(self, fqdn, ip_address, realm_name, domain_name, forwarders, ntp, reverse_zone, named_user="named", zonemgr=None, - serial_autoincrement=True, ca_configured=None): + ca_configured=None): self.named_user = named_user self.fqdn = fqdn self.ip_address = ip_address @@ -474,7 +474,6 @@ class BindInstance(service.Service): self.suffix = ipautil.realm_to_suffix(self.realm) self.ntp = ntp self.reverse_zone = reverse_zone - self.serial_autoincrement = serial_autoincrement self.ca_configured = ca_configured if not zonemgr: @@ -590,9 +589,6 @@ class BindInstance(service.Service): else: ipa_ca = "" - def bool_to_yesno(var): - return "yes" if var else "no" - self.sub_dict = dict( FQDN=self.fqdn, IP=self.ip_address, @@ -605,7 +601,6 @@ class BindInstance(service.Service): OPTIONAL_NTP=optional_ntp, ZONEMGR=self.zonemgr, IPA_CA_RECORD=ipa_ca, - SERIAL_AUTOINCREMENT=bool_to_yesno(self.serial_autoincrement), ) def __setup_dns_container(self): |