mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
fix: ensure command paths are returned as lists for db dump and import
This commit is contained in:
parent
4d4475b2de
commit
498356c14e
1 changed files with 2 additions and 2 deletions
|
@ -391,7 +391,7 @@ def db_dump(module, host, user, password, db_name, target, all_databases, port,
|
|||
if server_implementation == 'mariadb' and LooseVersion(server_version) >= LooseVersion("10.4.6"):
|
||||
cmd_str = 'mariadb-dump'
|
||||
try:
|
||||
cmd = module.get_bin_path(cmd_str, True)
|
||||
cmd = [module.get_bin_path(cmd_str, True)]
|
||||
except Exception as e:
|
||||
return 1, "", "Error determining dump command: %s" % str(e)
|
||||
|
||||
|
@ -495,7 +495,7 @@ def db_import(module, host, user, password, db_name, target, all_databases, port
|
|||
if server_implementation == 'mariadb' and LooseVersion(server_version) >= LooseVersion("10.4.6"):
|
||||
cmd_str = 'mariadb'
|
||||
try:
|
||||
cmd = module.get_bin_path(cmd_str, True)
|
||||
cmd = [module.get_bin_path(cmd_str, True)]
|
||||
except Exception as e:
|
||||
return 1, "", "Error determining mysql/mariadb command: %s" % str(e)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue