anaconda/tests/roles/sync-artifacts/tasks/main.yml
Radek Vykydal 1471316eac Import Anaconda functional tests from RHEL 8
Related: rhbz#1961087
2021-06-28 16:27:19 +02:00

14 lines
234 B
YAML

---
- name: Make sure rsync required to fetch artifacts is installed
dnf:
name:
- rsync
- name: Fetch artifacts
synchronize:
mode: pull
delete: yes
src: "{{ local_artifacts }}/"
dest: "{{ artifacts }}"