From 01331e6c80be5244d9f7a3c817444ca124e66a1f Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 8 Nov 2025 17:39:40 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20rsync=20option?= =?UTF-8?q?s=20for=20proxmox=20template=20sync?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the rsync options to use 'push' instead of 'pull', ensuring proper synchronization of the template with Proxmox. This change improves the consistency and reliability of the template deployment process. --- tasks/create_proxmox_debian_template.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/create_proxmox_debian_template.yml b/tasks/create_proxmox_debian_template.yml index fc8746b..f1bead4 100644 --- a/tasks/create_proxmox_debian_template.yml +++ b/tasks/create_proxmox_debian_template.yml @@ -216,7 +216,7 @@ ansible.builtin.synchronize: src: "{{ workdir }}/{{ template_name }}.qcow2" dest: "/var/lib/vz/template/qcow2/" - mode: pull + mode: push rsync_opts: - "--rsync-path='sudo rsync'"