ansible-gitea-management/tasks/gitea/configure.yml

18 lines
343 B
YAML
Raw Normal View History

2022-03-04 05:15:25 +00:00
---
# Configuration for gitea
- name: Enable Gitea
2022-03-28 00:53:47 +00:00
ansible.builtin.service:
name: gitea
state: started
enabled: true
# - name: Deploy Gitea configuration
# template:
# src: "etc/gitea/conf/app.ini.j2"
# dest: "/etc/gitea/conf/app.ini"
# owner: git
# group: git
# mode: '0660'
# notify: restart_gitea
2022-03-04 05:15:25 +00:00
...