14 lines
346 B
YAML
14 lines
346 B
YAML
---
|
|
- hosts: misc.crypto-libertarian.com
|
|
tasks:
|
|
- name: Find publications
|
|
find:
|
|
paths: /var/www/pub/
|
|
hidden: true
|
|
register: publications
|
|
|
|
- name: Fetch publications
|
|
fetch:
|
|
src: '{{ item }}'
|
|
dest: ../../backups
|
|
with_items: "{{ publications.files | map(attribute='path') | list }}"
|