From cb32af2ad4ffa4f53fecbaf693a18f1eec1f7222 Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 8 Nov 2025 21:34:16 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Update=20template=20syn?= =?UTF-8?q?chronization=20mode=20to=20push?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the Ansible synchronize task to use a push mode instead of pull, which will ensure that the latest template is deployed on each node. --- 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 2197f9b..cf1de59 100644 --- a/tasks/create_proxmox_debian_template.yml +++ b/tasks/create_proxmox_debian_template.yml @@ -229,7 +229,7 @@ ansible.posix.synchronize: src: "{{ workdir }}/{{ template_name }}.qcow2" dest: "/var/lib/vz/template/qemu/" - mode: pull + mode: push # delegate_to: node0 # rsync_opts: # - "--rsync-path='sudo rsync'"