1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-ansible/playbooks/backup/postgres.yml

14 lines
339 B
YAML

---
- hosts: postgres
tasks:
- name: Find PostgreSQL dumps
find:
paths: '{{ postgresql_backups_dir }}'
register: postgresql_dumps
- name: Fetch PostgreSQL dumps
fetch:
src: '{{ item }}'
dest: ../../backups
with_items: "{{ postgresql_dumps.files | map(attribute='path') | list }}"