mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-14 03:40:05 +00:00
CPunch
abaa4c9639
- all tasks/* have been moved to their own roles in roles/* - each file && template is now oragnized per-role - annotated each task which still isn't idempotent !TODO!
13 lines
248 B
YAML
13 lines
248 B
YAML
---
|
|
- name: Configure Gitea
|
|
template:
|
|
src: app.ini
|
|
dest: /etc/gitea/app.ini
|
|
owner: gitea
|
|
force: no # we don't want to kill our existing config D:
|
|
|
|
- name: Reload Gitea
|
|
systemd:
|
|
name: gitea
|
|
enabled: yes
|
|
state: started |