From 82124965271a1a56f243bbf90e79a098f69c874c Mon Sep 17 00:00:00 2001 From: Joe LeVeque Date: Fri, 23 Mar 2018 01:48:55 +0000 Subject: [PATCH] Need to double-escape when using 'args' syntax --- ansible/roles/test/tasks/common_tasks/reboot_sonic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/roles/test/tasks/common_tasks/reboot_sonic.yml b/ansible/roles/test/tasks/common_tasks/reboot_sonic.yml index 80741b08685..81bc4e2db26 100644 --- a/ansible/roles/test/tasks/common_tasks/reboot_sonic.yml +++ b/ansible/roles/test/tasks/common_tasks/reboot_sonic.yml @@ -14,7 +14,7 @@ host: "{{ ansible_host }}" port: 22 state: started - search_regex: "OpenSSH_[\w\.]+ Debian" + search_regex: "OpenSSH_[\\w\\.]+ Debian" delay: 10 timeout: 180 changed_when: false