summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2015-08-31 13:51:02 +0200
committerMartin Basti <mbasti@redhat.com>2015-09-02 10:26:14 +0200
commit740f7fd817b399dd1a546a20ab260ea3a6cd4ed2 (patch)
tree597b8a50802193f61f7cdd8c9cfaac0ca4dfa8d0
parent70d1c71e46811bd3d44249d5361f99613d4ce5af (diff)
downloadfreeipa-740f7fd817b399dd1a546a20ab260ea3a6cd4ed2.tar.gz
freeipa-740f7fd817b399dd1a546a20ab260ea3a6cd4ed2.tar.xz
freeipa-740f7fd817b399dd1a546a20ab260ea3a6cd4ed2.zip
DNSSEC: remove "DNSSEC is experimental" warnings
https://fedorahosted.org/freeipa/ticket/5265 Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
-rw-r--r--ipalib/plugins/dns.py18
-rw-r--r--ipaserver/install/dns.py2
2 files changed, 0 insertions, 20 deletions
diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py
index 81c7e0653..be0639b6a 100644
--- a/ipalib/plugins/dns.py
+++ b/ipalib/plugins/dns.py
@@ -2627,22 +2627,6 @@ class dnszone(DNSZoneBase):
messages.add_message(options.get('version', VERSION_WITHOUT_CAPABILITIES),
result, messages.ForwardersWarning())
- def _warning_dnssec_experimental(self, result, *keys, **options):
- # add warning when user use option --dnssec
- if 'idnssecinlinesigning' in options:
- if options['idnssecinlinesigning'] is True:
- messages.add_message(options['version'], result,
- messages.DNSSECWarning(
- additional_info=_("Visit 'http://www.freeipa.org/page/Releases/4.1.0#DNSSEC_Support'.")
- ))
- else:
- messages.add_message(options['version'], result,
- messages.DNSSECWarning(
- additional_info=_("If you encounter any problems please "
- "report them and restart 'named' service on affected IPA "
- "server.")
- ))
-
def _warning_name_server_option(self, result, context, **options):
if getattr(context, 'show_warning_nameserver_option', False):
messages.add_message(
@@ -2738,7 +2722,6 @@ class dnszone_add(DNSZoneBase_add):
result = super(dnszone_add, self).execute(*keys, **options)
self._warning_deprecated_option(result, **options)
self.obj._warning_forwarding(result, **options)
- self.obj._warning_dnssec_experimental(result, *keys, **options)
self.obj._warning_name_server_option(result, context, **options)
self.obj._warning_fw_zone_is_not_effective(result, *keys, **options)
return result
@@ -2829,7 +2812,6 @@ class dnszone_mod(DNSZoneBase_mod):
def execute(self, *keys, **options):
result = super(dnszone_mod, self).execute(*keys, **options)
self.obj._warning_forwarding(result, **options)
- self.obj._warning_dnssec_experimental(result, *keys, **options)
self.obj._warning_name_server_option(result, context, **options)
return result
diff --git a/ipaserver/install/dns.py b/ipaserver/install/dns.py
index 1c31f0c66..917ed808e 100644
--- a/ipaserver/install/dns.py
+++ b/ipaserver/install/dns.py
@@ -128,8 +128,6 @@ def install_check(standalone, replica, options, hostname):
print("NOTE: DNSSEC zone signing is not enabled by default")
print("")
if options.dnssec_master:
- print("DNSSEC support is experimental!")
- print("")
print("Plan carefully, replacing DNSSEC key master is not recommended")
print("")
print("")