Compare commits
2 Commits
cdb0dab350
...
d64c96576c
Author | SHA1 | Date | |
---|---|---|---|
d64c96576c | |||
6d90fe0510 |
@ -49,7 +49,7 @@
|
|||||||
|
|
||||||
- name: Backup Gitea Directory
|
- name: Backup Gitea Directory
|
||||||
ansible.builtin.copy:
|
ansible.builtin.copy:
|
||||||
src: /opt/gitea
|
src: /opt/gitea/
|
||||||
dest: "/opt/gitea.backup@{{ ansible_date_time.iso8601 }}"
|
dest: "/opt/gitea.backup@{{ ansible_date_time.iso8601 }}"
|
||||||
mode: "700"
|
mode: "700"
|
||||||
remote_src: true
|
remote_src: true
|
||||||
@ -74,12 +74,13 @@
|
|||||||
mode: "600"
|
mode: "600"
|
||||||
register: gitea_container
|
register: gitea_container
|
||||||
|
|
||||||
- name: Create / Recreate Gitea
|
- name: Start Gitea
|
||||||
community.docker.docker_compose:
|
community.docker.docker_compose:
|
||||||
project_src: /opt/gitea
|
project_src: /opt/gitea
|
||||||
state: present
|
register: docker_compose
|
||||||
restarted: true
|
|
||||||
when: gitea_env.changed or gitea_container.changed
|
- ansible.builtin.debug:
|
||||||
|
var: docker_compose
|
||||||
|
|
||||||
- name: Check if {{ gitea.hostname }}.{{ gitea.domain }} is available and returning status 200
|
- name: Check if {{ gitea.hostname }}.{{ gitea.domain }} is available and returning status 200
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
@ -108,6 +109,7 @@
|
|||||||
project_src: /opt/gitea
|
project_src: /opt/gitea
|
||||||
state: present
|
state: present
|
||||||
restarted: true
|
restarted: true
|
||||||
|
|
||||||
always:
|
always:
|
||||||
- name: Check if {{ gitea.hostname }}.{{ gitea.domain }} is available and returning status 200
|
- name: Check if {{ gitea.hostname }}.{{ gitea.domain }} is available and returning status 200
|
||||||
ansible.builtin.uri:
|
ansible.builtin.uri:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user