1
1
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_gitea.git synced 2024-08-16 11:39:50 +02:00
ansible_role_gitea/tasks/install_systemd.yml

18 lines
402 B
YAML
Raw Normal View History

---
2017-01-10 22:09:34 +01:00
- name: "Setup systemd service"
template:
src: gitea.service.j2
dest: /lib/systemd/system/gitea.service
owner: root
group: root
mode: 0644
notify:
- "Reload systemd"
- "Restart gitea"
2020-09-07 22:02:04 +02:00
2021-01-16 22:36:41 +01:00
# systemd to be reloaded the first time because
# it is the only way Systemd is going to be aware of the new unit file.
2020-09-07 22:02:04 +02:00
- name: "Reload systemd"
systemd:
daemon_reload: true