Torjus Håkestad
f13ae508f1
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
22 lines
421 B
YAML
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
|