summaryrefslogtreecommitdiffstats
path: root/ipaserver/plugins/dns.py
diff options
context:
space:
mode:
authorPetr Spacek <pspacek@redhat.com>2016-10-04 17:18:05 +0200
committerMartin Basti <mbasti@redhat.com>2016-10-11 16:48:47 +0200
commitbf96b80200c3e8d1795a913db4e0222ea558e609 (patch)
treed493c22a8b7891a7829e786bccb73b182b8d5f25 /ipaserver/plugins/dns.py
parentf363dfbeed7aeba51d694a60b29389d94c7bda44 (diff)
downloadfreeipa-bf96b80200c3e8d1795a913db4e0222ea558e609.tar.gz
freeipa-bf96b80200c3e8d1795a913db4e0222ea558e609.tar.xz
freeipa-bf96b80200c3e8d1795a913db4e0222ea558e609.zip
DNS: Improve field descriptions for SRV records
Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipaserver/plugins/dns.py')
-rw-r--r--ipaserver/plugins/dns.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/ipaserver/plugins/dns.py b/ipaserver/plugins/dns.py
index 996eb52c0..e37050a61 100644
--- a/ipaserver/plugins/dns.py
+++ b/ipaserver/plugins/dns.py
@@ -1329,12 +1329,16 @@ class SRVRecord(DNSRecord):
rfc = 2782
parts = (
Int('priority',
- label=_('Priority'),
+ label=_('Priority (order)'),
+ doc=_('Lower number means higher priority. Clients will attempt '
+ 'to contact the server with the lowest-numbered priority '
+ 'they can reach.'),
minvalue=0,
maxvalue=65535,
),
Int('weight',
label=_('Weight'),
+ doc=_('Relative weight for entries with the same priority.'),
minvalue=0,
maxvalue=65535,
),