ansible/playbooks/manual/openqa-restart-workers.yml
Ryan Lerch 2cf38c1f17 [yaml-lint] fix yamllint errors and warnings on plabooks
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2024-11-25 19:04:25 +10:00

15 lines
522 B
YAML

---
- name: restart worker services on openQA worker hosts (production)
hosts: openqa_workers:openqa_lab_workers
user: root
vars_files:
- /srv/web/infra/ansible/vars/global.yml
- "/srv/private/ansible/vars.yml"
- /srv/web/infra/ansible/vars/{{ ansible_distribution }}.yml
handlers:
- import_tasks: "{{ handlers_path }}/restart_services.yml"
tasks:
- name: restart all the worker services
service: name=openqa-worker@{{ item }} state=restarted
with_sequence: "count={{ openqa_workers }}"