From 7a11b3fd30e7f13f02a4fc83481307ec46006a83 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Thu, 28 Dec 2023 19:26:50 +0100 Subject: [PATCH] use copy instead of synchronize --- obal/data/roles/fetch_sources/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/obal/data/roles/fetch_sources/tasks/main.yml b/obal/data/roles/fetch_sources/tasks/main.yml index 5f987828..023d98c3 100644 --- a/obal/data/roles/fetch_sources/tasks/main.yml +++ b/obal/data/roles/fetch_sources/tasks/main.yml @@ -18,7 +18,7 @@ depth: 1 - name: 'Copy upstream files' - ansible.posix.synchronize: + ansible.builtin.copy: src: "{{ obal_tmp_dir }}/{{ upstream_directory }}/{{ item }}" dest: "{{ inventory_dir }}/{{ package_base_dir }}/{{ inventory_hostname }}/" with_items: "{{ upstream_files }}" @@ -58,7 +58,7 @@ chdir: "{{ obal_tmp_dir }}/{{ inventory_hostname }}" - name: 'Copy upstream files' - ansible.posix.synchronize: + ansible.builtin.copy: src: "{{ obal_tmp_dir }}/{{ inventory_hostname }}/{{ item }}" dest: "{{ inventory_dir }}/{{ package_base_dir }}/{{ inventory_hostname }}/" with_items: "{{ upstream_files }}"