From 8d53826d4b0bdf48027a35982f1ae603e84d10a8 Mon Sep 17 00:00:00 2001 From: Chris Croome <chris@webarchitects.co.uk> Date: Wed, 6 Jul 2022 18:02:26 +0100 Subject: [PATCH] typo fixed --- tasks/compose_v1.yml | 2 +- tasks/local_facts.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/compose_v1.yml b/tasks/compose_v1.yml index 45e825d..69b53a7 100644 --- a/tasks/compose_v1.yml +++ b/tasks/compose_v1.yml @@ -25,7 +25,7 @@ check_mode: false changed_when: false register: docker_compose_alternatives_query - failed_when: docker_compose_alternatives_query.rc in not regex('^0|2') + failed_when: docker_compose_alternatives_query.rc is not regex('^0|2') - name: Remove Docker Compose alternatives ansible.builtin.command: "{{ cmd }}" diff --git a/tasks/local_facts.yml b/tasks/local_facts.yml index 6ea58ed..f1e24aa 100644 --- a/tasks/local_facts.yml +++ b/tasks/local_facts.yml @@ -58,6 +58,6 @@ verbosity: 2 tags: - - docker + - docker - docker_local_facts ... -- GitLab