Update plugins/module_utils/user.py

Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
This commit is contained in:
tompal3 2024-02-20 21:54:50 +02:00 committed by GitHub
parent c415325901
commit 494b537359
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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):