mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
dnsrecord-mod: allow to modify ttl without passing the record
The command ipa dnsrecord-mod <zone> <record> --ttl requires to provide at least one record to modify. When none is specified, it prompts by proposing each of the existing records, for instance: ipa dnsrecord-mod ZZZZZ.org ns11 --ttl=86400 No option to modify specific record provided. Current DNS record contents: A record: xxx.xxx.xxx.xxx AAAA record: xxxx:xx Modify A record 'xxxx.xxxx.xxxx.xxxx'? Yes/No (default No): Modify AAAA record 'xxxx:xx'? Yes/No (default No): ipa: ERROR: No options to modify a specific record provided. The admin should be able to modify the TTL value without re-entering the record information. The issue happens because of an internal check that forgot to consider 'dnsttl' as a valid standalone modification. Fixes: https://pagure.io/freeipa/issue/7982 Reviewed-By: Rob Crittenden <rcritten@redhat.com> Reviewed-By: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
This commit is contained in:
parent
dd7198acec
commit
bb91fcabee
@ -55,7 +55,7 @@ def get_extra_rrtype(name):
|
|||||||
|
|
||||||
|
|
||||||
def has_cli_options(cmd, options, no_option_msg, allow_empty_attrs=False):
|
def has_cli_options(cmd, options, no_option_msg, allow_empty_attrs=False):
|
||||||
sufficient = ('setattr', 'addattr', 'delattr', 'rename')
|
sufficient = ('setattr', 'addattr', 'delattr', 'rename', 'dnsttl')
|
||||||
if any(k in options for k in sufficient):
|
if any(k in options for k in sufficient):
|
||||||
return
|
return
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user