This repository has been archived on 2023-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
homeserver-ansible/roles/services/gitea/tasks/main.yml

51 lines
1.1 KiB
YAML
Raw Normal View History

2022-02-27 16:05:34 -05:00
- name: Install gitea packages
community.general.pacman:
name: gitea
state: present
- name: Configure gitea
template:
src: templates/gitea_app.ini.j2
dest: /etc/gitea/app.ini
2022-03-01 17:43:44 -05:00
notify: Restart gitea
2022-02-27 16:05:34 -05:00
- name: Change systemd unit file to allow access to dataroot
lineinfile:
path: /usr/lib/systemd/system/gitea.service
insertafter: "^WorkingDirectory.*"
regexp: "^ReadWritePaths.*"
line: "ReadWritePaths={{ dataroot }}/gitea/"
state: present
2022-03-01 17:43:44 -05:00
notify: Restart gitea
2022-03-02 19:58:31 -05:00
- name: Find owner of data folder
stat:
path: "{{ dataroot }}/gitea/"
register: data_folder
- name: Ensure data folder is under correct owner
file:
path: "{{ dataroot }}/gitea/"
state: directory
recurse: yes
owner: gitea
group: gitea
when: data_folder.stat.pw_name != "gitea"
2022-03-01 17:43:44 -05:00
- name: Ensure gitea is stopped
service:
name: gitea
state: stopped
2022-02-27 16:05:34 -05:00
- name: Change homedir of gitea
user:
name: gitea
home: "{{ dataroot }}/gitea/"
2022-03-01 17:43:44 -05:00
notify: Restart gitea
2022-02-27 16:05:34 -05:00
- name: Enable gitea
service:
name: gitea
2022-03-01 17:43:44 -05:00
state: started
2022-02-27 16:05:34 -05:00
enabled: yes