paulbsd-salt/states/gitea/config.sls
Paul Lecuq a3b02771a4
All checks were successful
continuous-integration/drone/push Build is passing
created templates folder on each state
2023-03-11 10:08:26 +01:00

16 lines
306 B
Plaintext

# vim: ft=sls
---
{% from "gitea/map.jinja" import gitea with context %}
gitea-config:
file.managed:
- name: {{ gitea.configfile }}
- source: salt://gitea/templates/app.ini.j2
- template: jinja
- user: git
- group: git
- mode: 600
- makedirs: true
- require:
- git