ansible-gitea-management/handlers/main.yml

18 lines
231 B
YAML
Raw Permalink Normal View History

2022-03-04 05:15:25 +00:00
---
# Handlers
- name: restart_gitea
service:
name: gitea
state: restarted
2022-06-04 02:33:48 +00:00
- name: restart_httpd
service:
name: httpd
state: restarted
- name: restart_nginx
service:
name: nginx
state: restarted
...