From 9851e4996fa804a9753eabe050289fcd8a741fad Mon Sep 17 00:00:00 2001 From: tcude Date: Thu, 18 Jan 2024 14:39:45 -0600 Subject: [PATCH] additional tweaks --- vmware_to_proxmox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmware_to_proxmox.sh b/vmware_to_proxmox.sh index 5b062fb..1ca7350 100755 --- a/vmware_to_proxmox.sh +++ b/vmware_to_proxmox.sh @@ -74,7 +74,7 @@ function create_proxmox_vm() { ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "qemu-img convert -f vmdk -O qcow2 $vmdk_file $qcow2_path" # Create the VM - ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "qm create $VM_ID --name $VM_NAME --memory 2048 --cores 2 --net0 virtio,bridge=vmbr0" + ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "qm create $VM_ID --name $VM_NAME --memory 2048 --cores 2 --net0 virtio,bridge=vmbr0.69,tag=80" # Import the disk to local-lvm storage echo "Importing disk to local-lvm storage..."