Skip to content

Commit

Permalink
qwe
Browse files Browse the repository at this point in the history
  • Loading branch information
droideck committed Dec 19, 2024
1 parent 3fcf815 commit 6e2154b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/cockpit/389-console/src/lib/database/globalPwp.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,12 @@ export class GlobalPwPolicy extends React.Component {
if (!this.state.savePasswordStorageDisabled) {
this.handleSavePasswordStorage();
}
if (this.state.saveGeneralDisabled) {
this.setState({
saving: false
});
return;
}

const cmd = [
'dsconf', '-j', "ldapi://%2fvar%2frun%2fslapd-" + this.props.serverId + ".socket",
Expand Down
2 changes: 1 addition & 1 deletion src/lib389/lib389/cli_conf/plugins/pwstorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def pbkdf2_get_iterations(inst, basedn, log, args):
log = log.getChild('pbkdf2_get_iterations')
plugin = _get_pbkdf2_plugin(inst, args.variant)

attr = 'nsslapd-pwdPBKDF2NumIterations'
attr = 'nsslapd-pwdpbkdf2numiterations'

if hasattr(args, 'json') and args.json:
vals = {}
Expand Down

0 comments on commit 6e2154b

Please sign in to comment.