neuro_ansible/mirror_repos/fedora_modular.yaml
David Rotermund 4bde171078 Update
2024-04-19 01:34:53 +02:00

25 lines
608 B
YAML

---
- name: mirror fedora modular repo
hosts: all
become: true
gather_facts: true
vars:
work_path: "Fedora_Modular"
src_url: "rsync://ftp.halifax.rwth-aachen.de/fedora/linux/releases/{{ version }}/Modular/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 }}"