mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
Changed += to append because cmd is a list (#377)
Using += on a list cause some problems druing creation of mysql command: /usr/bin/mysql - - u s e r = r o o t - - p a s s w o r d = ' ' --socket=/run/mysqld/mysqld.sock
This commit is contained in:
parent
ed3935abec
commit
2e9d50f274
1 changed files with 1 additions and 1 deletions
|
@ -442,7 +442,7 @@ def db_import(module, host, user, password, db_name, target, all_databases, port
|
|||
cmd.append("--defaults-extra-file=%s" % shlex_quote(config_file))
|
||||
|
||||
if check_implicit_admin:
|
||||
cmd += " --user=root --password=''"
|
||||
cmd.append("--user=root --password=''")
|
||||
else:
|
||||
if user:
|
||||
cmd.append("--user=%s" % shlex_quote(user))
|
||||
|
|
Loading…
Add table
Reference in a new issue