From 89971d52dd76c701739d66e036b20245a3dc42d7 Mon Sep 17 00:00:00 2001 From: Egon Date: Mon, 13 Jan 2025 22:41:25 +0100 Subject: [PATCH] added cifs support in ubuntu2404-vm.sh added cifs to case $STORAGE_TYPE in nfs | dir | cifs) So VMs can be deployed on cifs shares --- vm/ubuntu2404-vm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vm/ubuntu2404-vm.sh b/vm/ubuntu2404-vm.sh index 01cc3015..683f95f0 100644 --- a/vm/ubuntu2404-vm.sh +++ b/vm/ubuntu2404-vm.sh @@ -370,7 +370,7 @@ msg_ok "Downloaded ${CL}${BL}${FILE}${CL}" STORAGE_TYPE=$(pvesm status -storage $STORAGE | awk 'NR>1 {print $2}') case $STORAGE_TYPE in -nfs | dir) +nfs | dir | cifs) DISK_EXT=".qcow2" DISK_REF="$VMID/" DISK_IMPORT="-format qcow2"