Hi,

I found that ovirt-node doesn't support modifying admin account's password in 
security page and there were some discussion about it in 
https://bugzilla.redhat.com/show_bug.cgi?id=966354. 

I applied the patch and tested it again, but an error is thrown probably like 
this "list but not string". 

I found that the code "passwd.set_password("admin", pw)" in security_page.py 
caught this problem . Because pw was a list but not a string.

So i suggest the following modification to solve this problem:
Before:
pw = effective_model.values_for(passwd_keys)
After:
pws = effective_model.values_for(passwd_keys)
pw=pwTmp[0]

Best regards to you.
Ricky

_______________________________________________
node-devel mailing list
[email protected]
http://lists.ovirt.org/mailman/listinfo/node-devel

Reply via email to