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
This commit is contained in:
parent
d309d5af2d
commit
13aa75cf95
2 changed files with 3 additions and 1 deletions
2
changelogs/fragments/72-mysql_db_fix_false_warning.yml
Normal file
2
changelogs/fragments/72-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).
|
|
@ -557,7 +557,7 @@ def main():
|
|||
skip_lock_tables=dict(type='bool', default=False),
|
||||
dump_extra_args=dict(type='str'),
|
||||
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),
|
||||
check_implicit_admin=dict(type='bool', default=False),
|
||||
config_overrides_defaults=dict(type='bool', default=False),
|
||||
|
|
Loading…
Add table
Reference in a new issue