add ignore_errors for testing

This commit is contained in:
2022-04-27 13:23:20 -04:00
parent 842e84db32
commit 6231fbe5c7
2 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,7 @@
copy: copy:
src : files/hello-ansible.txt src : files/hello-ansible.txt
dest : "{{ check_file }}" dest : "{{ check_file }}"
ignore_errors: yes
... ...

View File

@ -35,6 +35,7 @@
file: file:
path : "{{ check_file }}" path : "{{ check_file }}"
state : absent state : absent
ignore_errors: yes
... ...