From f43676cb1ffa5d05502107b8bf86ece32a5aacfb Mon Sep 17 00:00:00 2001 From: Jorge-Rodriguez Date: Thu, 11 Feb 2021 18:02:08 +0200 Subject: [PATCH] Fix command quotes --- .../targets/test_mysql_user/tasks/test_user_password_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/test_mysql_user/tasks/test_user_password_update.yml b/tests/integration/targets/test_mysql_user/tasks/test_user_password_update.yml index 25056e4..09e8d69 100644 --- a/tests/integration/targets/test_mysql_user/tasks/test_user_password_update.yml +++ b/tests/integration/targets/test_mysql_user/tasks/test_user_password_update.yml @@ -87,7 +87,7 @@ ignore_errors: yes - name: store user2 grants with new password - command: "{{ mysql_command }} -e SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\"" + command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\"" register: user_password_new when: user_password_new_create is failed