summaryrefslogtreecommitdiffstats
path: root/ipalib/messages.py
diff options
context:
space:
mode:
authorMartin Basti <mbasti@redhat.com>2014-10-16 16:27:00 +0200
committerMartin Kosek <mkosek@redhat.com>2014-10-21 12:23:03 +0200
commitca030a089f9e45a5dae5f6fb5993f4cc714f1ab2 (patch)
treef99b61a736b118ce42773cc1d9ab8769b28a6a79 /ipalib/messages.py
parent30bc3a55cf816cc5114ddbd102afa8b52f598dec (diff)
downloadfreeipa-ca030a089f9e45a5dae5f6fb5993f4cc714f1ab2.tar.gz
freeipa-ca030a089f9e45a5dae5f6fb5993f4cc714f1ab2.tar.xz
freeipa-ca030a089f9e45a5dae5f6fb5993f4cc714f1ab2.zip
DNSSEC: validate forwarders
Tickets: https://fedorahosted.org/freeipa/ticket/3801 https://fedorahosted.org/freeipa/ticket/4417 Design: https://fedorahosted.org/bind-dyndb-ldap/wiki/BIND9/Design/DNSSEC Reviewed-By: Jan Cholasta <jcholast@redhat.com> Reviewed-By: David Kupka <dkupka@redhat.com>
Diffstat (limited to 'ipalib/messages.py')
-rw-r--r--ipalib/messages.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/ipalib/messages.py b/ipalib/messages.py
index 6d871bc10..5eeab3c54 100644
--- a/ipalib/messages.py
+++ b/ipalib/messages.py
@@ -179,6 +179,28 @@ class OptionSemanticChangedWarning(PublicMessage):
u"%(current_behavior)s.\n%(hint)s")
+class DNSServerNotRespondingWarning(PublicMessage):
+ """
+ **13006** Used when a DNS server is not responding to queries
+ """
+
+ errno = 13006
+ type = "warning"
+ format = _(u"DNS server %(server)s not responding.")
+
+
+class DNSServerDoesNotSupportDNSSECWarning(PublicMessage):
+ """
+ **13007** Used when a DNS server does not support DNSSEC validation
+ """
+
+ errno = 13007
+ type = "warning"
+ format = _(u"DNS server %(server)s does not support DNSSEC. "
+ u"If DNSSEC validation is enabled on IPA server(s), "
+ u"please disable it.")
+
+
def iter_messages(variables, base):
"""Return a tuple with all subclasses
"""