You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
413 B
17 lines
413 B
5 years ago
|
---
|
||
|
|
||
|
- name: Set sclo-git212 as default git command
|
||
|
template: src=git.sh.j2 dest=/etc/profile.d/git.sh mode=755
|
||
|
tags: gitea
|
||
|
|
||
|
- name: Deploy gitea configuration
|
||
|
template: src=app.ini.j2 dest={{ gitea_root_dir }}/etc/app.ini owner=root group=gitea mode=0660
|
||
|
notify: restart gitea
|
||
|
tags: gitea
|
||
|
|
||
|
- name: Set optimal permissions
|
||
|
command: "{{ gitea_root_dir }}/perms.sh"
|
||
|
changed_when: False
|
||
|
tags: gitea
|
||
|
|