mg
651164f26f
Co-authored-by: Michael Grote <michael.grote@posteo.de> Reviewed-on: mg/ansible#294 Co-authored-by: mg <michael.grote@posteo.de> Co-committed-by: mg <michael.grote@posteo.de>
17 lines
434 B
YAML
17 lines
434 B
YAML
---
|
|
- name: "Setup systemd service"
|
|
ansible.builtin.template:
|
|
src: gitea.service.j2
|
|
dest: /lib/systemd/system/gitea.service
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
notify:
|
|
- "Reload systemd"
|
|
- "Restart gitea"
|
|
|
|
# systemd to be reloaded the first time because
|
|
# it is the only way Systemd is going to be aware of the new unit file.
|
|
- name: "Reload systemd"
|
|
ansible.builtin.systemd:
|
|
daemon_reload: true
|