12 lines
183 B
YAML
12 lines
183 B
YAML
|
---
|
||
|
- name: configure
|
||
|
template:
|
||
|
src: app.ini.j2
|
||
|
dest: "{{ gitea_config_path }}"
|
||
|
owner: root
|
||
|
group: "{{ gitea_group }}"
|
||
|
mode: 0640
|
||
|
notify:
|
||
|
- restart gitea
|
||
|
|