mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Improve change detection in mysql_variables
mysql_variables bindly executes a SET var = value query even when the variable already has the requested value. With this patch the query is executed only if the current value is different to the requested one.
This commit is contained in:
parent
8a516d1479
commit
b90a250165
1 changed files with 4 additions and 2 deletions
|
@ -197,10 +197,12 @@ def main():
|
||||||
module.fail_json(msg="unable to connect to database, check login_user and login_password are correct or ~/.my.cnf has the credentials")
|
module.fail_json(msg="unable to connect to database, check login_user and login_password are correct or ~/.my.cnf has the credentials")
|
||||||
if mysqlvar is None:
|
if mysqlvar is None:
|
||||||
module.fail_json(msg="Cannot run without variable to operate with")
|
module.fail_json(msg="Cannot run without variable to operate with")
|
||||||
if value is None and mysqlvar is not None:
|
|
||||||
mysqlvar_val = getvariable(cursor, mysqlvar)
|
mysqlvar_val = getvariable(cursor, mysqlvar)
|
||||||
|
if value is None:
|
||||||
module.exit_json(msg=mysqlvar_val)
|
module.exit_json(msg=mysqlvar_val)
|
||||||
else:
|
else:
|
||||||
|
if value == mysqlvar_val[0][1]:
|
||||||
|
module.exit_json(msg="Variable already set to requested value", changed=False)
|
||||||
result = setvariable(cursor, mysqlvar, value)
|
result = setvariable(cursor, mysqlvar, value)
|
||||||
if result is True:
|
if result is True:
|
||||||
module.exit_json(msg="Variable change succeeded", changed=True)
|
module.exit_json(msg="Variable change succeeded", changed=True)
|
||||||
|
|
Loading…
Reference in a new issue