mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-24 11:21:26 -07:00
Add account locking warnings on user add
This commit is contained in:
parent
0532ebd6ca
commit
2f26a6681f
1 changed files with 7 additions and 3 deletions
|
@ -553,12 +553,16 @@ def get_grants(cursor, user, host):
|
||||||
|
|
||||||
def user_add(cursor, user, host, host_all, password, encrypted,
|
def user_add(cursor, user, host, host_all, password, encrypted,
|
||||||
plugin, plugin_hash_string, plugin_auth_string, new_priv,
|
plugin, plugin_hash_string, plugin_auth_string, new_priv,
|
||||||
tls_requires, account_locking, check_mode):
|
tls_requires, account_locking, check_mode, module):
|
||||||
# we cannot create users without a proper hostname
|
# we cannot create users without a proper hostname
|
||||||
if host_all:
|
if host_all:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
msg, locking = validate_account_locking(cursor, account_locking)
|
msg, locking = validate_account_locking(cursor, account_locking)
|
||||||
|
if msg:
|
||||||
|
module.warn(msg)
|
||||||
|
module.warn("Account locking settings are being ignored.")
|
||||||
|
|
||||||
if check_mode:
|
if check_mode:
|
||||||
return (True, msg)
|
return (True, msg)
|
||||||
|
|
||||||
|
@ -1219,8 +1223,8 @@ def main():
|
||||||
module.fail_json(msg="host_all parameter cannot be used when adding a user")
|
module.fail_json(msg="host_all parameter cannot be used when adding a user")
|
||||||
try:
|
try:
|
||||||
changed = user_add(cursor, user, host, host_all, password, encrypted,
|
changed = user_add(cursor, user, host, host_all, password, encrypted,
|
||||||
plugin, plugin_hash_string, plugin_auth_string,
|
plugin, plugin_hash_string, plugin_auth_string, priv,
|
||||||
priv, tls_requires, account_locking, module.check_mode)
|
tls_requires, account_locking, module.check_mode, module)
|
||||||
if changed:
|
if changed:
|
||||||
msg = "User added"
|
msg = "User added"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue