Skip to content

Commit

Permalink
don't log admin password on keytab creation.
Browse files Browse the repository at this point in the history
  • Loading branch information
HappyBasher committed Feb 19, 2024
1 parent fd8e99b commit 3702efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/setup.d/z_final.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
msg = 'Creating web proxy sso keytab '
printScript(msg, '', False, False, True)
try:
subProc(constants.FWSHAREDIR + "/create-keytab.py -v -a '" + adminpw + "'", logfile)
subProc(constants.FWSHAREDIR + "/create-keytab.py -v -a '" + adminpw + "'", logfile, True)
printScript(' Success!', '', True, True, False, len(msg))
except Exception as error:
printScript(error, '', True, True, False, len(msg))
Expand Down

0 comments on commit 3702efa

Please sign in to comment.