From 51aaac0cbc5ef013148b2fcabe4f16e9f29d64a9 Mon Sep 17 00:00:00 2001 From: "William Hirigoyen (Evolix)" Date: Fri, 29 Oct 2021 14:54:44 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20evocheck=5Fforce=5Finstall=20VARIABLE=20I?= =?UTF-8?q?S=20NOT=20DEFINED=20(valid=C3=A9=20par=20jlecour)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- evocheck/tasks/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/evocheck/tasks/main.yml b/evocheck/tasks/main.yml index 9f6732ac..2032740b 100644 --- a/evocheck/tasks/main.yml +++ b/evocheck/tasks/main.yml @@ -3,7 +3,9 @@ - name: Package install is not supported anymore fail: msg: Package install is not supported anymore - when: evocheck_force_install == "package" + when: + - evocheck_force_install is defined + - evocheck_force_install == "package" - include: install.yml