From 91d3d4d7b2abf6441f8be033323d3849bbb57217 Mon Sep 17 00:00:00 2001 From: Petr Spacek Date: Wed, 11 Jun 2014 13:24:48 +0200 Subject: Fix --ttl description for DNS zones TTL specified in idnsZone object class affects all records at zone apex, not only SOA record. Reviewed-By: Nathaniel McCallum --- ipalib/plugins/dns.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipalib/plugins/dns.py') diff --git a/ipalib/plugins/dns.py b/ipalib/plugins/dns.py index c3870f8a2..736162368 100644 --- a/ipalib/plugins/dns.py +++ b/ipalib/plugins/dns.py @@ -1764,8 +1764,8 @@ class dnszone(LDAPObject): ), Int('dnsttl?', cli_name='ttl', - label=_('SOA time to live'), - doc=_('SOA record time to live'), + label=_('Time to live'), + doc=_('Time to live for records at zone apex'), minvalue=0, maxvalue=2147483647, # see RFC 2181 ), -- cgit