From f3a2e0ad0aa780e07ac0a661d603400c24242c5b Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 8 Nov 2025 18:52:34 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20template=20syn?= =?UTF-8?q?c=20mode=20to=20pull?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the Ansible synchronize task in the Proxmox Debian template to use a pull mode instead of push, which is more idiomatic for synchronizing files from the host to the container. --- 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 270f03d..1329fff 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: push + mode: pull # rsync_opts: # - "--rsync-path='sudo rsync'"