From a69fdb50b0e8312b4b13c9ce82aea4b9d92e5f5a Mon Sep 17 00:00:00 2001 From: Jose Date: Sat, 8 Nov 2025 17:36:49 +0100 Subject: [PATCH] =?UTF-8?q?style=20=F0=9F=92=8E:=20Simplify=20compressed?= =?UTF-8?q?=20image=20replacement?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the compressed image replacement step to remove unnecessary comments and shell commands. This change improves code readability and maintainability. --- tasks/create_proxmox_debian_template.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/create_proxmox_debian_template.yml b/tasks/create_proxmox_debian_template.yml index 499b196..fc8746b 100644 --- a/tasks/create_proxmox_debian_template.yml +++ b/tasks/create_proxmox_debian_template.yml @@ -203,9 +203,9 @@ # {{ image_info.stdout }} - - name: Replace original compressed image with sparsified version - ansible.builtin.shell: | - mv {{ workdir }}/{{ template_name }}_sparse.qcow2 {{ workdir }}/{{ template_name }}.qcow2 + # - name: Replace original compressed image with sparsified version + # ansible.builtin.shell: | + # mv {{ workdir }}/{{ template_name }}_sparse.qcow2 {{ workdir }}/{{ template_name }}.qcow2 # - name: Compress and shrink image # ansible.builtin.shell: |