1
0
mirror of https://git.lapiole.org/dani/ansible-roles.git synced 2025-04-26 15:13:20 +02:00
2021-12-01 19:13:34 +01:00

16 lines
284 B
YAML

---
- name: reload nginx
command: nginx -t
notify: really reload nginx
- name: really reload nginx
service: name=nginx state=reloaded
- name: restart nginx
command: nginx -t
notify: really restart nginx
- name: really restart nginx
service: name=nginx state=restarted