ipaserver,ipareplica: Fix Random Serial Numbers always enabled

The option _random_serial_numbers was using with the wrong type in
ipaserver_setup_ca.py and ipareplica_setup_ca.py. Therefore RSN was
always enabled.

Fixes:
- https://bugzilla.redhat.com/show_bug.cgi?id=2110523
- https://bugzilla.redhat.com/show_bug.cgi?id=2110526
This commit is contained in:
Thomas Woerner
2022-07-21 18:50:00 +02:00
parent e9d637c57a
commit f85c60676c
3 changed files with 3 additions and 3 deletions

View File

@@ -231,7 +231,7 @@ def main():
# in the _setup_ca module and also some others.
options._subject_base = None
options._ca_subject = None
options._random_serial_numbers = None
options._random_serial_numbers = False
# set values ####################################################