From 4f2aeb29d3e508023430189b29522e2314e2fe44 Mon Sep 17 00:00:00 2001 From: Laur Ivan Date: Sun, 30 Apr 2023 12:56:42 +0200 Subject: [PATCH] fix: Molecule cleanup Need to explicitly load the variables. --- molecule/default/cleanup.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/molecule/default/cleanup.yml b/molecule/default/cleanup.yml index a89d554..d65fc8d 100644 --- a/molecule/default/cleanup.yml +++ b/molecule/default/cleanup.yml @@ -3,6 +3,10 @@ hosts: all gather_facts: true tasks: + - name: "Load the defaults" + ansible.builtin.include_vars: + dir: "../../defaults" + - name: Check if the docker-compose file exists. ansible.builtin.stat: path: "{{ firefly_config_path | expanduser | realpath }}/docker-compose.yml"