Compare commits
No commits in common. "f6cb7f343ade5050f4b411bd510c2d687a05443b" and "6152baa8aed03a1a736dbdf06161bd9b48f4064b" have entirely different histories.
f6cb7f343a
...
6152baa8ae
@ -1,15 +1,2 @@
|
|||||||
---
|
---
|
||||||
- name: Reload firewalld
|
# Handlers
|
||||||
ansible.builtin.systemd:
|
|
||||||
name: firewalld
|
|
||||||
state: reloaded
|
|
||||||
ignore_errors: "{{ ansible_check_mode }}"
|
|
||||||
|
|
||||||
- name: Restart openQA workers
|
|
||||||
ansible.builtin.systemd:
|
|
||||||
name: "openqa-worker@{{ item }}"
|
|
||||||
state: restarted
|
|
||||||
enabled: true
|
|
||||||
# range "end" parameter is exclusive, so add 1
|
|
||||||
loop: "{{ range(1, (openqa_worker_count | int + 1)) | list }}"
|
|
||||||
ignore_errors: "{{ ansible_check_mode }}"
|
|
||||||
|
@ -30,7 +30,14 @@
|
|||||||
- openqa-vnc
|
- openqa-vnc
|
||||||
tags:
|
tags:
|
||||||
- configure
|
- configure
|
||||||
notify: Reload firewalld
|
|
||||||
|
- name: Reload firewalld
|
||||||
|
ansible.builtin.systemd:
|
||||||
|
name: firewalld
|
||||||
|
state: reloaded
|
||||||
|
tags:
|
||||||
|
- configure
|
||||||
|
ignore_errors: "{{ ansible_check_mode }}"
|
||||||
|
|
||||||
- name: Write openQA configuration file
|
- name: Write openQA configuration file
|
||||||
ansible.builtin.template:
|
ansible.builtin.template:
|
||||||
@ -41,10 +48,21 @@
|
|||||||
mode: "0444"
|
mode: "0444"
|
||||||
loop:
|
loop:
|
||||||
- client.conf
|
- client.conf
|
||||||
- workers.ini
|
- workers.conf
|
||||||
tags:
|
tags:
|
||||||
- configure
|
- configure
|
||||||
notify: Restart openQA workers
|
|
||||||
|
- name: Start openQA workers
|
||||||
|
ansible.builtin.systemd:
|
||||||
|
name: "openqa-worker@{{ item }}"
|
||||||
|
state: started
|
||||||
|
enabled: true
|
||||||
|
# range "end" parameter is exclusive, so add 1
|
||||||
|
loop: "{{ range(1, (openqa_worker_count | int + 1)) | list }}"
|
||||||
|
tags:
|
||||||
|
- start_workers
|
||||||
|
- configure
|
||||||
|
ignore_errors: "{{ ansible_check_mode }}"
|
||||||
|
|
||||||
- name: Start openQA cache services
|
- name: Start openQA cache services
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
|
Loading…
Reference in New Issue
Block a user