Compare commits

..

No commits in common. "f6cb7f343ade5050f4b411bd510c2d687a05443b" and "6152baa8aed03a1a736dbdf06161bd9b48f4064b" have entirely different histories.

3 changed files with 22 additions and 17 deletions

View File

@ -1,15 +1,2 @@
---
- name: Reload firewalld
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 }}"
# Handlers

View File

@ -30,7 +30,14 @@
- openqa-vnc
tags:
- 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
ansible.builtin.template:
@ -41,10 +48,21 @@
mode: "0444"
loop:
- client.conf
- workers.ini
- workers.conf
tags:
- 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
ansible.builtin.systemd: