mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
function to check if a user is locked already
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
e9845b0a1c
commit
1380c20b20
1 changed files with 16 additions and 0 deletions
|
@ -52,6 +52,22 @@ def user_exists(cursor, user, host, host_all):
|
||||||
return count[0] > 0
|
return count[0] > 0
|
||||||
|
|
||||||
|
|
||||||
|
def user_is_locked(cursor, user, host, host_all):
|
||||||
|
if host_all:
|
||||||
|
cursor.execute("SHOW CREATE USER %s", (user,))
|
||||||
|
else:
|
||||||
|
cursor.execute("SHOW CREATE USER %s@%s", (user, host))
|
||||||
|
|
||||||
|
# Unless I am very much mistaken there should only be 1 answer to this query ever.
|
||||||
|
result = cursor.fetchone()
|
||||||
|
|
||||||
|
for res in result.values():
|
||||||
|
if res.endswith('ACCOUNT LOCK'):
|
||||||
|
return True
|
||||||
|
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def sanitize_requires(tls_requires):
|
def sanitize_requires(tls_requires):
|
||||||
sanitized_requires = {}
|
sanitized_requires = {}
|
||||||
if tls_requires:
|
if tls_requires:
|
||||||
|
|
Loading…
Add table
Reference in a new issue