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

View File

@ -23,7 +23,6 @@
# 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
@ -31,7 +30,6 @@
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
... ...