From 5c11b67507f058ff44d9a4c20b3cf882376e983b Mon Sep 17 00:00:00 2001 From: Egon Date: Sat, 18 Jan 2025 20:54:43 +0100 Subject: [PATCH] added cifs support in ubuntu2404-vm.sh (#1461) 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 e4fea83f..c789ecc9 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"