mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Allow playbook specified login_user and login_password to override config file settings
This commit is contained in:
committed by
Matt Clay
parent
46b60a5b70
commit
4f42e752e6
@@ -184,7 +184,7 @@ class InvalidPrivsError(Exception):
|
|||||||
# MySQL module specific support methods.
|
# MySQL module specific support methods.
|
||||||
#
|
#
|
||||||
|
|
||||||
def connect(module, login_user, login_password, config_file='~/.my.cnf'):
|
def connect(module, login_user=None, login_password=None, config_file='~/.my.cnf'):
|
||||||
config = {
|
config = {
|
||||||
'host': module.params['login_host'],
|
'host': module.params['login_host'],
|
||||||
'db': 'mysql'
|
'db': 'mysql'
|
||||||
|
|||||||
Reference in New Issue
Block a user