From 4076e8e4e50d527f613536138cd851cd068cd2d9 Mon Sep 17 00:00:00 2001 From: Martin Basti Date: Mon, 13 Jun 2016 13:32:25 +0200 Subject: DNS Locations: server-mod: add automatic records update For any location or server weight change is required to update records https://fedorahosted.org/freeipa/ticket/2008 Reviewed-By: Petr Spacek Reviewed-By: Jan Cholasta --- ipalib/messages.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ipalib') diff --git a/ipalib/messages.py b/ipalib/messages.py index a81cc664c..cae9d7867 100644 --- a/ipalib/messages.py +++ b/ipalib/messages.py @@ -418,6 +418,16 @@ class DNSUpdateNotIPAManagedZone(PublicMessage): ) +class AutomaticDNSRecordsUpdateFailed(PublicMessage): + errno = 13024 + type = "warning" + format = _( + "Automatic update of DNS system records failed. " + "Please re-run update of system records manually to get list of " + "missing records." + ) + + def iter_messages(variables, base): """Return a tuple with all subclasses """ -- cgit