mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
mysql_db: fix false warning related to unsafe_login_password (#34)
* mysql_db: fix false warning when use_unsafe_password is set * add changelog fragment * fix fragment * improve fragment
This commit is contained in:
parent
f1c647f360
commit
94b383a6dc
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/34-mysql_db_fix_false_warning.yml
Normal file
2
changelogs/fragments/34-mysql_db_fix_false_warning.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- mysql_db - fix false warning related to ``unsafe_login_password`` option (https://github.com/ansible-collections/community.mysql/issues/33).
|
|
@ -569,7 +569,7 @@ def main():
|
||||||
skip_lock_tables=dict(type='bool', default=False),
|
skip_lock_tables=dict(type='bool', default=False),
|
||||||
dump_extra_args=dict(type='str'),
|
dump_extra_args=dict(type='str'),
|
||||||
use_shell=dict(type='bool', default=False),
|
use_shell=dict(type='bool', default=False),
|
||||||
unsafe_login_password=dict(type='bool', default=False),
|
unsafe_login_password=dict(type='bool', default=False, no_log=True),
|
||||||
restrict_config_file=dict(type='bool', default=False),
|
restrict_config_file=dict(type='bool', default=False),
|
||||||
check_implicit_admin=dict(type='bool', default=False),
|
check_implicit_admin=dict(type='bool', default=False),
|
||||||
config_overrides_defaults=dict(type='bool', default=False),
|
config_overrides_defaults=dict(type='bool', default=False),
|
||||||
|
|
Loading…
Add table
Reference in a new issue