mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-26 16:16:31 -06:00
DNS: Improve field descriptions for SRV records
Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
parent
f363dfbeed
commit
bf96b80200
@ -1180,10 +1180,10 @@ IPA.dns.get_record_metadata = function() {
|
||||
{
|
||||
name: 'srvrecord',
|
||||
attributes: [
|
||||
'srv_part_priority',
|
||||
'srv_part_weight',
|
||||
'srv_part_port',
|
||||
'srv_part_target'
|
||||
'srv_part_priority',
|
||||
'srv_part_weight',
|
||||
'srv_part_port',
|
||||
'srv_part_target'
|
||||
],
|
||||
adder_attributes: [],
|
||||
columns: ['srv_part_priority', 'srv_part_weight', 'srv_part_port',
|
||||
|
@ -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,
|
||||
),
|
||||
|
Loading…
Reference in New Issue
Block a user