fix: Ignore errors in check mode

This commit is contained in:
Al Bowles 2024-03-22 21:22:40 -05:00
parent b795d3ec5b
commit 3af388724a
No known key found for this signature in database
GPG Key ID: 9B42314A30F1A3D1
1 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@
# strip: 1
backup: true
with_items: "{{ branding_patches }}"
ignore_errors: "{{ ansible_check_mode }}"
tags:
- branding
@ -30,6 +31,7 @@
ansible.builtin.systemd:
name: openqa-webui
state: restarted
ignore_errors: "{{ ansible_check_mode }}"
tags:
- branding
...