From 6231fbe5c775348b801f94367958f63489be00c5 Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Wed, 27 Apr 2022 13:23:20 -0400 Subject: [PATCH] add ignore_errors for testing --- file-creation-single.yml | 1 + file-removal-test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/file-creation-single.yml b/file-creation-single.yml index 1b0b2f0..4102c07 100644 --- a/file-creation-single.yml +++ b/file-creation-single.yml @@ -44,6 +44,7 @@ copy: src : files/hello-ansible.txt dest : "{{ check_file }}" + ignore_errors: yes ... diff --git a/file-removal-test.yml b/file-removal-test.yml index 900429e..29ec413 100644 --- a/file-removal-test.yml +++ b/file-removal-test.yml @@ -35,6 +35,7 @@ file: path : "{{ check_file }}" state : absent + ignore_errors: yes ...