openpunk-ansible/roles/gitea/tasks/main.yml

13 lines
248 B
YAML
Raw Normal View History

2022-05-31 04:36:55 +00:00
---
2022-05-30 15:46:36 +00:00
- name: Configure Gitea
template:
src: app.ini
2022-05-30 15:46:36 +00:00
dest: /etc/gitea/app.ini
owner: gitea
force: no # we don't want to kill our existing config D:
2022-05-30 15:46:36 +00:00
- name: Reload Gitea
systemd:
name: gitea
enabled: yes
2022-08-02 18:32:19 +00:00
state: started