Compare commits

...

2 Commits

Author SHA1 Message Date
Al Bowles a25f79c502
fix: match filenames to convention 2024-03-22 21:51:11 -05:00
Al Bowles 3af388724a
fix: Ignore errors in check mode 2024-03-22 21:22:40 -05:00
3 changed files with 4 additions and 2 deletions

View File

@ -20,7 +20,7 @@
become: true
vars_files:
- vars/openqa.yml
- vars/openqa_branding.yml
- vars/openqa-branding.yml
# This is to try to avoid the handler issue in pre/post tasks
handlers:
@ -45,7 +45,7 @@
ansible.builtin.import_tasks: tasks/openqa.yml
- name: Apply Rocky Linux OpenQA Branding
ansible.builtin.import_tasks: tasks/openqa_branding.yml
ansible.builtin.import_tasks: tasks/openqa-branding.yml
post_tasks:
- name: Touching run file that ansible has ran here

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
...