From 7f173482753bccf523fe95c7c52118664dedf851 Mon Sep 17 00:00:00 2001 From: tcude Date: Sun, 11 Feb 2024 21:25:45 -0600 Subject: [PATCH] enabled qemu guest agent --- vmware_to_proxmox.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/vmware_to_proxmox.sh b/vmware_to_proxmox.sh index 56bbaae..7aae589 100755 --- a/vmware_to_proxmox.sh +++ b/vmware_to_proxmox.sh @@ -119,6 +119,9 @@ function create_proxmox_vm() { echo "VM ID is: $VM_ID" qm create $VM_ID --name $VM_NAME --memory 2048 --cores 2 --net0 virtio,bridge=vmbr69,tag=$VLAN_TAG --bios ovmf --scsihw virtio-scsi-pci + echo "Enabling QEMU Guest Agent..." + qm set $VM_ID --agent 1 + # Import the disk to the selected storage echo "Importing disk to $STORAGE_TYPE storage..." qm importdisk $VM_ID $raw_path $STORAGE_TYPE