style 💎: Simplify shell commands in create_proxmox_debian_template.yml

Updated shell commands to use double quotes for command arguments, improving readability and consistency.
This commit is contained in:
2025-11-08 22:57:30 +01:00
parent 4fdef98933
commit cc203b3c0b

View File

@@ -248,7 +248,7 @@
- block:
- name: Mount the LXC container filesystem
command: pct mount "{{ lxc_id }}"
command: "pct mount {{ lxc_id }}"
- name: Copy file from LXC container to the host
copy:
@@ -256,7 +256,7 @@
dest: "/var/lib/vz/template/qemu/"
- name: Unmount the LXC container filesystem
command: pct unmount "{{ lxc_id }}"
command: "pct unmount {{ lxc_id }}"
- block:
- name: Import QCOW2 as disk to new VM