ansible-role-gitea/handlers/backup.yaml
Marius Alwan Meyer d32e4f3608
All checks were successful
ansible-lint / Ansible Lint (push) Successful in 10s
Verwende den korrekten FQCN des moduls
2023-05-01 00:16:38 +00:00

29 lines
757 B
YAML

- name: Get stats of docker-compose.yaml
ansible.builtin.stat:
path: /opt/gitea/docker-compose.yaml
register: docker_compose_stat
listen:
- Backup Gitea
- name: Stop Gitea for Backup
community.docker.docker_compose:
project_src: /opt/gitea
state: present
stopped: true
register: docker_compose
listen:
- Backup Gitea
notify:
- Ensure Gitea is running
when: docker_compose_stat.stat.exists is defined and docker_compose_stat.stat.exists
- name: Backup Gitea Directory
ansible.posix.synchronize:
src: /opt/gitea/
dest: "/opt/gitea.backup@{{ lookup('pipe', 'date --utc --iso-8601=seconds') }}"
recursive: true
delegate_to: "{{ inventory_hostname }}"
listen:
- Backup Gitea
register: backup