gitea/handlers/main.yml
vincent 60b34abb84
Some checks failed
continuous-integration/drone/push Build is failing
switch regenerate keys handler to tasks
2021-07-20 20:16:14 +02:00

20 lines
377 B
YAML

- name: "Restart gitea"
service:
name: gitea
state: restarted
when: ansible_service_mgr == "systemd"
become: yes
- name: "Reload systemd"
systemd:
daemon_reload: true
when: ansible_service_mgr == "systemd"
become: yes
- name: "Restart fail2ban"
service:
name: fail2ban
state: restarted
when: ansible_service_mgr == "systemd"
become: yes