Skip to content

Commit

Permalink
Fix pki_security_domain_setup param
Browse files Browse the repository at this point in the history
pkispawn has been updated to no longer call check_security_domain()
if pki_security_domain_setup is set to False.
  • Loading branch information
edewata committed May 13, 2024
1 parent 8a0e904 commit 1786e9f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion base/server/python/pki/server/pkispawn.py
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,8 @@ def main(argv):
if not interactive and \
not config.str2bool(parser.mdict['pki_skip_configuration']):
check_ds()
check_security_domain()
if config.str2bool(parser.mdict['pki_security_domain_setup']):
check_security_domain()

if args.precheck:
print('pre-checks completed successfully.')
Expand Down

0 comments on commit 1786e9f

Please sign in to comment.