mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Update plugins/module_utils/user.py
Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
parent
c415325901
commit
494b537359
1 changed files with 1 additions and 6 deletions
|
@ -974,12 +974,7 @@ def set_password_expire(cursor, user, host, password_expire, password_expire_int
|
|||
elif password_expire.lower() == "now":
|
||||
statement = "PASSWORD EXPIRE"
|
||||
|
||||
params = (user, host)
|
||||
query = ["ALTER USER %s@%s"]
|
||||
|
||||
query.append(statment)
|
||||
query = ' '.join(query)
|
||||
cursor.execute(query, params)
|
||||
cursor.execute("ALTER USER %s@%s " + statement, (user, host))
|
||||
|
||||
|
||||
def get_password_expiration_policy(cursor, user, host, maria_role=False):
|
||||
|
|
Loading…
Add table
Reference in a new issue