1
Fork 0
mirror of https://github.com/RGBCube/vmware-to-proxmox-migration-script synced 2025-07-25 07:27:44 +00:00

cleaned up comments

This commit is contained in:
tcude 2024-01-18 16:17:30 -06:00
parent 3ed3431efa
commit 14fa3574b6

View file

@ -68,7 +68,7 @@ function create_proxmox_vm() {
exit 1
fi
# Extract OVF from OVA
# Extract OVF from OVA
echo "Extracting OVF from OVA..."
ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "tar -xvf /var/vm-migration/$VM_NAME.ova -C /var/vm-migration/"
@ -87,11 +87,7 @@ function create_proxmox_vm() {
echo "Converting .vmdk file to raw format..."
ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "qemu-img convert -f vmdk -O raw $vmdk_file $raw_path"
# Create the VM with UEFI if needed
#echo "Creating VM in Proxmox with UEFI..."
#ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "qm create $VM_ID --name $VM_NAME --memory 2048 --cores 2 --net0 virtio,bridge=vmbr0 --bios ovmf"
# Create the VM with UEFI, VLAN tag, and specify the SCSI hardware
# Create the VM with UEFI BIOS, VLAN tag, and specify the SCSI hardware
echo "Creating VM in Proxmox with UEFI, VLAN tag, and SCSI hardware..."
ssh $PROXMOX_USERNAME@$PROXMOX_SERVER "qm create $VM_ID --name $VM_NAME --memory 2048 --cores 2 --net0 virtio,bridge=vmbr69,tag=$VLAN_TAG --bios ovmf --scsihw virtio-scsi-pci"