mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
Certificate search max_serial_number problem fixed
Maximum serial number field now accepts only positive numbers https://fedorahosted.org/freeipa/ticket/4163 Reviewed-By: Jan Cholasta <jcholast@redhat.com>
This commit is contained in:
parent
bc0872cc0b
commit
be7b1b94e3
@ -650,10 +650,12 @@ class cert_find(Command):
|
||||
doc=_("minimum serial number"),
|
||||
autofill=False,
|
||||
minvalue=0,
|
||||
maxvalue=2147483647,
|
||||
),
|
||||
Int('max_serial_number?',
|
||||
doc=_("maximum serial number"),
|
||||
autofill=False,
|
||||
minvalue=0,
|
||||
maxvalue=2147483647,
|
||||
),
|
||||
Flag('exactly?',
|
||||
|
Loading…
Reference in New Issue
Block a user