cubicweb/misc/migration/3.15.4_Any.py
author Laurent Peuch <cortex@worlddomination.be>
Wed, 18 Dec 2019 05:45:37 +0100
changeset 12812 00749d83a672
parent 11057 0b59724cb3f2
permissions -rw-r--r--
[doc] set_/free_cnxset method doesn't exist anymore

from __future__ import print_function

from logilab.common.shellutils import generate_password
from cubicweb.server.utils import crypt_password

for user in rql('CWUser U WHERE U cw_source S, S name "system", U upassword P, U login L').entities():
    salt = user.upassword.getvalue()
    if crypt_password('', salt) == salt:
        passwd = generate_password()
        print('setting random password for user %s' % user.login)
        user.set_attributes(upassword=passwd)

commit()