Start cache services

This commit is contained in:
Al Bowles 2023-02-27 10:03:14 -06:00
parent 676a3d16c4
commit 6152baa8ae
No known key found for this signature in database
GPG Key ID: 9B42314A30F1A3D1
1 changed files with 9 additions and 0 deletions

View File

@ -63,4 +63,13 @@
- start_workers
- configure
ignore_errors: "{{ ansible_check_mode }}"
- name: Start openQA cache services
ansible.builtin.systemd:
name: "{{ item }}"
state: started
enabled: true
loop:
- openqa-worker-cacheservice
- openqa-worker-cacheservice-minion
...