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:
|
- block:
|
||||||
- name: Mount the LXC container filesystem
|
- 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
|
- name: Copy file from LXC container to the host
|
||||||
copy:
|
copy:
|
||||||
@@ -256,7 +256,7 @@
|
|||||||
dest: "/var/lib/vz/template/qemu/"
|
dest: "/var/lib/vz/template/qemu/"
|
||||||
|
|
||||||
- name: Unmount the LXC container filesystem
|
- name: Unmount the LXC container filesystem
|
||||||
command: pct unmount "{{ lxc_id }}"
|
command: "pct unmount {{ lxc_id }}"
|
||||||
|
|
||||||
- block:
|
- block:
|
||||||
- name: Import QCOW2 as disk to new VM
|
- name: Import QCOW2 as disk to new VM
|
||||||
|
|||||||
Reference in New Issue
Block a user