mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
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
(cherry picked from commit 2e9d50f274
)
Co-authored-by: Maciej <moledzki@users.noreply.github.com>
This commit is contained in:
parent
0a40c13aa8
commit
9ca52b3aa5
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