You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- |
|
- name: make gallery archive |
|
community.general.archive: |
|
dest: "{{ archive }}" |
|
path: "{{ album_path }}" |
|
|
|
- name: copy archive to controller |
|
fetch: |
|
src: "{{ archive }}" |
|
dest: "{{ output_dir }}" |
|
flat: yes |
|
|
|
- name: remove remote archive |
|
file: |
|
path: "{{ archive }}" |
|
state: absent
|
|
|