From 51db8d702d618b3205fe07ed585872fb35e2e083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Romain=20Gon=C3=A7alves?= Date: Thu, 29 Apr 2021 20:23:36 +0200 Subject: roles/bhyve: Fix variable mustaches --- roles/bhyve/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bhyve/tasks/main.yml b/roles/bhyve/tasks/main.yml index f47be53..1b41de0 100644 --- a/roles/bhyve/tasks/main.yml +++ b/roles/bhyve/tasks/main.yml @@ -78,7 +78,7 @@ file: path: "{{ item[1].path }}" state: absent - when: bhyve_strict and (item[1].path | basename) not in "{{ valid_vms }}" + when: bhyve_strict and (item[1].path | basename) not in valid_vms with_nested: - "{{ vms }}" - "{{ active_vms.files }}" -- cgit v1.2.3