Files
fedora-infra_ansible/roles/rabbit/queue/handlers/main.yml
Ryan Lerch 3c41882bb0 ansiblelint fixes - fqcn[action-core] - shell to ansible.builtin.shell
Replaces references to shell: with ansible.builtin.shell

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2025-01-15 11:29:10 +10:00

11 lines
289 B
YAML

---
- name: restart nagios on noc
ansible.builtin.shell: nagios -v /etc/nagios/nagios.cfg && systemctl restart nagios
delegate_to: "{{ queue_nagios_server }}"
- name: restart nrpe on rabbitmq
service:
name: nrpe
state: restarted
delegate_to: "{{ queue_rabbitmq_server }}"