ansible-buildsys-management/tasks/sync/generate_filelist.yml

16 lines
510 B
YAML
Raw Normal View History

2023-02-20 03:54:48 +00:00
---
2023-11-18 22:21:27 +00:00
# It takes about 5 minutes to do the file listing. Give it 10 minutes of wiggle.
# The fedora mirror list takes 15-20 minutes. 30 minutes of wiggle.
2023-02-20 03:54:48 +00:00
- name: "Make sure the sync repo are up to date"
ansible.builtin.git:
repo: https://git.resf.org/sig_core/toolkit.git
dest: /root/sync-devel
update: true
version: devel
- name: "Generate file list"
ansible.builtin.shell: "/bin/bash /root/sync-devel/sync-file-list-parallel.sh"
changed_when: 1 != 1
failed_when: "result.rc != 0"
...