Compare commits

..

16 Commits

Author SHA1 Message Date
Al Bowles 203286d4ac Automation to uninstall openQA on developer hosts 2024-03-22 22:59:42 +00:00
Al Bowles c4d9d3ea24 Refinements to the devbox setup 2024-03-22 22:59:42 +00:00
Al Bowles acbbcace69 Add templates for multivm networking 2024-03-22 22:59:42 +00:00
Al Bowles 95cf46f6d1 Appease the linter 2024-03-22 22:59:42 +00:00
Al Bowles 22cdf9dec5 WIP: Automation for configuring multivm networking 2024-03-22 22:59:42 +00:00
Al Bowles 69923813dd Correctly name workers.ini, move worker restart to handler 2024-03-22 22:59:42 +00:00
Al Bowles 2c6f93ff8e Perform firewalld reload as a handler 2024-03-22 22:59:42 +00:00
Al Bowles 05fb2aa93b Linter fixes 2024-03-22 22:59:40 +00:00
Al Bowles 1c26ea706f
Use some more defaulty defaults 2023-11-17 22:56:23 -06:00
Al Bowles ca08f4bb0e
Add some usages 2023-11-17 22:56:23 -06:00
Al Bowles beb14b7a96
It turns out openqa does not like inline comments in its ini files 2023-11-17 22:56:23 -06:00
Al Bowles d7ab984b4f
Start cache services 2023-11-17 22:56:18 -06:00
Al Bowles 96f68226dc
Move requirements file to meet convention 2023-11-17 22:56:18 -06:00
Al Bowles b337544f5f
Add requirements file 2023-11-17 22:56:18 -06:00
Al Bowles 7d8bd73307
Update filelist 2023-11-17 22:56:09 -06:00
Al Bowles 2a237385ef
Automation for configuring a worker-only host 2023-11-17 22:56:02 -06:00
2 changed files with 5 additions and 2 deletions

View File

@ -44,6 +44,9 @@
- name: Install and configure OpenQA
ansible.builtin.import_tasks: tasks/openqa.yml
- name: Apply Rocky Linux OpenQA Branding
ansible.builtin.import_tasks: tasks/openqa_branding.yml
post_tasks:
- name: Touching run file that ansible has ran here
ansible.builtin.file:

View File

@ -9,6 +9,6 @@ templates_src_dir: "{{ playbook_dir }}/files/usr/share/openqa/templates"
templates_dest_dir: "/usr/share/openqa/templates"
branding_patches:
- {path: /usr/share/openqa/assets/assetpack.def, patch: /usr/share/openqa/assets/assetpack.def.patch}
- {path: /usr/share/openqa/templates/webapi/main/index.html.ep, patch: /usr/share/openqa/templates/webapi/main/index.html.ep.patch}
- { path: /usr/share/openqa/assets/assetpack.def, patch: /usr/share/openqa/assets/assetpack.def.patch }
- { path: /usr/share/openqa/templates/webapi/main/index.html.ep, patch: /usr/share/openqa/templates/webapi/main/index.html.ep.patch }
...