mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
dns: re-introduce --raw in dnsrecord-del
The flag was removed in commit ff52c25ae2
because it is unused. Add it back for compatibility with old clients.
https://fedorahosted.org/freeipa/ticket/5644
Reviewed-By: Martin Basti <mbasti@redhat.com>
This commit is contained in:
parent
984ae3858d
commit
e5f7a612fb
3
API.txt
3
API.txt
@ -1340,7 +1340,7 @@ output: Entry('result')
|
|||||||
output: Output('summary', type=[<type 'unicode'>, <type 'NoneType'>])
|
output: Output('summary', type=[<type 'unicode'>, <type 'NoneType'>])
|
||||||
output: PrimaryKey('value')
|
output: PrimaryKey('value')
|
||||||
command: dnsrecord_del/1
|
command: dnsrecord_del/1
|
||||||
args: 2,34,3
|
args: 2,35,3
|
||||||
arg: DNSNameParam('dnszoneidnsname', cli_name='dnszone')
|
arg: DNSNameParam('dnszoneidnsname', cli_name='dnszone')
|
||||||
arg: DNSNameParam('idnsname', cli_name='name')
|
arg: DNSNameParam('idnsname', cli_name='name')
|
||||||
option: A6Record('a6record*', autofill=False, cli_name='a6_rec')
|
option: A6Record('a6record*', autofill=False, cli_name='a6_rec')
|
||||||
@ -1367,6 +1367,7 @@ option: NAPTRRecord('naptrrecord*', autofill=False, cli_name='naptr_rec')
|
|||||||
option: NSECRecord('nsecrecord*', autofill=False, cli_name='nsec_rec')
|
option: NSECRecord('nsecrecord*', autofill=False, cli_name='nsec_rec')
|
||||||
option: NSRecord('nsrecord*', autofill=False, cli_name='ns_rec')
|
option: NSRecord('nsrecord*', autofill=False, cli_name='ns_rec')
|
||||||
option: PTRRecord('ptrrecord*', autofill=False, cli_name='ptr_rec')
|
option: PTRRecord('ptrrecord*', autofill=False, cli_name='ptr_rec')
|
||||||
|
option: Flag('raw', autofill=True, default=False)
|
||||||
option: RPRecord('rprecord*', autofill=False, cli_name='rp_rec')
|
option: RPRecord('rprecord*', autofill=False, cli_name='rp_rec')
|
||||||
option: RRSIGRecord('rrsigrecord*', autofill=False, cli_name='rrsig_rec')
|
option: RRSIGRecord('rrsigrecord*', autofill=False, cli_name='rrsig_rec')
|
||||||
option: SIGRecord('sigrecord*', autofill=False, cli_name='sig_rec')
|
option: SIGRecord('sigrecord*', autofill=False, cli_name='sig_rec')
|
||||||
|
4
VERSION
4
VERSION
@ -90,5 +90,5 @@ IPA_DATA_VERSION=20100614120000
|
|||||||
# #
|
# #
|
||||||
########################################################
|
########################################################
|
||||||
IPA_API_VERSION_MAJOR=2
|
IPA_API_VERSION_MAJOR=2
|
||||||
IPA_API_VERSION_MINOR=214
|
IPA_API_VERSION_MINOR=215
|
||||||
# Last change: ftweedal: add ca-disable and ca-enable commands
|
# Last change: dns: re-introduce --raw in dnsrecord-del
|
||||||
|
@ -3800,6 +3800,10 @@ class dnsrecord_del(LDAPUpdate):
|
|||||||
label=_('Delete all associated records'),
|
label=_('Delete all associated records'),
|
||||||
),
|
),
|
||||||
dnsrecord.structured_flag,
|
dnsrecord.structured_flag,
|
||||||
|
Flag(
|
||||||
|
'raw',
|
||||||
|
exclude=('cli', 'webui'),
|
||||||
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
def get_options(self):
|
def get_options(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user