Replaces many references to file: with ansible.builtin.file Signed-off-by: Ryan Lerch <rlerch@redhat.com>
16 lines
482 B
YAML
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
|