nrec-ansible/project/roles/gitea/tasks/main.yml
Torjus Håkestad f13ae508f1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Add gitea role
2022-01-12 21:40:14 +01:00

22 lines
421 B
YAML

---
- name: Create gitea.service
ansible.builtin.template:
src: gitea.service.j2
dest: /etc/systemd/system/gitea.service
notify:
- reload systemd
- restart gitea
- name: Flush handlers
meta: flush_handlers
- name: Ensure service is started
ansible.builtin.systemd:
state: started
name: gitea
- name: Ensure service is enabled
ansible.builtin.systemd:
enabled: yes
name: gitea