From 498356c14e6aabfa5f042aa8caafa4171ae1316d Mon Sep 17 00:00:00 2001 From: Laurent Indermuehle Date: Thu, 6 Mar 2025 16:10:13 +0100 Subject: [PATCH] fix: ensure command paths are returned as lists for db dump and import --- plugins/modules/mysql_db.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/mysql_db.py b/plugins/modules/mysql_db.py index 1580b33..bdbb773 100644 --- a/plugins/modules/mysql_db.py +++ b/plugins/modules/mysql_db.py @@ -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)