mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
Add the location and logic of where I think user locking would happen.
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
1380c20b20
commit
6747ef32e9
1 changed files with 10 additions and 0 deletions
|
@ -266,6 +266,9 @@ def user_add(cursor, user, host, host_all, password, encrypted,
|
||||||
cursor.execute("ALTER USER %s@%s ATTRIBUTE %s", (user, host, json.dumps(attributes)))
|
cursor.execute("ALTER USER %s@%s ATTRIBUTE %s", (user, host, json.dumps(attributes)))
|
||||||
final_attributes = attributes_get(cursor, user, host)
|
final_attributes = attributes_get(cursor, user, host)
|
||||||
|
|
||||||
|
# if locked:
|
||||||
|
# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK")
|
||||||
|
|
||||||
return {'changed': True, 'password_changed': not used_existing_password, 'attributes': final_attributes}
|
return {'changed': True, 'password_changed': not used_existing_password, 'attributes': final_attributes}
|
||||||
|
|
||||||
|
|
||||||
|
@ -575,6 +578,13 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
||||||
cursor.execute(*query_with_args)
|
cursor.execute(*query_with_args)
|
||||||
changed = True
|
changed = True
|
||||||
|
|
||||||
|
# if user_is_locked(cursor, user, host, False) != locked:
|
||||||
|
# if locked:
|
||||||
|
# cursor.execute("ALTER USER %s@%s ACCOUNT LOCK", (user, host))
|
||||||
|
# else:
|
||||||
|
# cursor.execute("ALTER USER %s@%s ACCOUNT UNLOCK", (user, host))
|
||||||
|
# changed = True
|
||||||
|
|
||||||
return {'changed': changed, 'msg': msg, 'password_changed': password_changed, 'attributes': final_attributes}
|
return {'changed': changed, 'msg': msg, 'password_changed': password_changed, 'attributes': final_attributes}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue