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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user