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

View File

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