ansible/roles/copr/backend/handlers/main.yml
Ryan Lerch 62952df107 ansiblelint fixes-- fqcn[action-core] - file to ansible.builtin.file
Replaces many references to  file: with ansible.builtin.file

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

16 lines
482 B
YAML

---
- name: chmod_key
ansible.builtin.file: path=/etc/lighttpd/copr-be.fedoraproject.org.pem owner=root group=root mode=0600
- name: restart copr-backend
service: name="{{ copr_backend_target }}" state=restarted
when: not services_disabled
- name: systemctl daemon-reload
command: /usr/bin/systemctl daemon-reload
- name: restart lighttpd
action: service name=lighttpd state=restarted
- name: restart node_exporter
action: service name=node_exporter state=restarted