11 lines
250 B
YAML
11 lines
250 B
YAML
---
|
|
- name: "Restart gitea"
|
|
ansible.builtin.service:
|
|
name: gitea
|
|
state: restarted
|
|
when: ansible_service_mgr == "systemd"
|
|
|
|
- name: "Reload systemd"
|
|
ansible.builtin.systemd:
|
|
daemon_reload: true
|
|
when: ansible_service_mgr == "systemd" |