diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-04-29 20:23:36 +0200 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-04-29 20:23:36 +0200 |
commit | 51db8d702d618b3205fe07ed585872fb35e2e083 (patch) | |
tree | 44d2f8cc4d84d0ba83722f0e9b99c5fb81133541 /roles | |
parent | f33cb3ee05e63a8f0606e3a28ca9bbe0f947582c (diff) | |
download | infrastructure-51db8d702d618b3205fe07ed585872fb35e2e083.tar.gz |
roles/bhyve: Fix variable mustaches
Diffstat (limited to 'roles')
-rw-r--r-- | roles/bhyve/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
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 }}" |