Store hash

This commit is contained in:
M.Ravi 2017-09-25 09:35:18 +02:00
parent cd3fdcf935
commit a73bcaef05
2 changed files with 3 additions and 3 deletions

View File

@ -319,7 +319,7 @@ class PasswordResetConfirmView(PasswordResetConfirmViewMixin):
messages.success(request, _('Password has been reset.'))
# Change opennebula password
opennebula_client.change_user_password(new_password)
opennebula_client.change_user_password(user.password)
return self.form_valid(form)
else:

View File

@ -438,11 +438,11 @@ class OpenNebulaManager():
self.oneadmin_client.call(oca.VmTemplate.METHODS[
'delete'], template_id, False)
def change_user_password(self, new_password):
def change_user_password(self, passwd_hash):
self.oneadmin_client.call(
oca.User.METHODS['passwd'],
self.opennebula_user.id,
new_password
passwd_hash
)
def add_public_key(self, user, public_key='', merge=False):