mirror of
https://github.com/iiab/iiab.git
synced 2025-02-12 19:22:24 +00:00
32 lines
909 B
YAML
32 lines
909 B
YAML
- name: Enable & Restart 'gitea' systemd service, if gitea_enabled
|
|
systemd:
|
|
name: gitea
|
|
daemon_reload: yes
|
|
enabled: yes
|
|
state: restarted
|
|
when: gitea_enabled
|
|
|
|
- name: Disable & Stop 'gitea' systemd service, if not gitea_enabled
|
|
systemd:
|
|
name: gitea
|
|
enabled: no
|
|
state: stopped
|
|
when: not gitea_enabled
|
|
|
|
|
|
- name: Enable http://box{{ gitea_url }} via NGINX, by installing {{ nginx_conf_dir }}/gitea-nginx.conf from template
|
|
template:
|
|
src: gitea-nginx.conf.j2
|
|
dest: "{{ nginx_conf_dir }}/gitea-nginx.conf" # /etc/nginx/conf.d
|
|
when: gitea_enabled
|
|
|
|
- name: Disable http://box{{ gitea_url }} via NGINX, by removing {{ nginx_conf_dir }}/gitea-nginx.conf
|
|
file:
|
|
path: "{{ nginx_conf_dir }}/gitea-nginx.conf" # /etc/nginx/conf.d
|
|
state: absent
|
|
when: not gitea_enabled
|
|
|
|
- name: Restart 'nginx' systemd service
|
|
systemd:
|
|
name: nginx
|
|
state: restarted
|