Compare commits

..

No commits in common. "a25f79c5028b14b00f521203564064c42c99b10f" and "b795d3ec5b30930c6184d6064ce7e29acab6dbba" have entirely different histories.

3 changed files with 2 additions and 4 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,7 +23,6 @@
# strip: 1
backup: true
with_items: "{{ branding_patches }}"
ignore_errors: "{{ ansible_check_mode }}"
tags:
- branding
@ -31,7 +30,6 @@
ansible.builtin.systemd:
name: openqa-webui
state: restarted
ignore_errors: "{{ ansible_check_mode }}"
tags:
- branding
...