neuro_ansible/mirror_repos/fusion_free_everything.yaml
David Rotermund 67bf61df5a Update
2024-04-19 01:48:17 +02:00

25 lines
612 B
YAML

---
- name: mirror fusion free repo
hosts: all
become: true
gather_facts: true
vars:
work_path: "fusion_free2"
src_url: "rsync://mirror1.hs-esslingen.de/rpmfusion/free/fedora/releases/{{ version }}/Everything/x86_64/"
tasks:
- name: create directory
ansible.builtin.file:
path: "{{ base_path }}/{{ version }}/{{ work_path }}"
state: "directory"
- name: syncronize
ansible.posix.synchronize:
dest: "{{ base_path }}/{{ version }}/{{ work_path }}"
src: "{{ src_url }}"
delete: "true"
delegate_to: "{{ inventory_hostname }}"