This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script that imports VMware images (ovf based) to Proxmox VE | |
# Your VM_NAME needs to be the same for: VM_NAME (directory) and VM_NAME.ovf | |
set -euo pipefail | |
PROXMOX_USER=root | |
PROXMOX_PASS='???' | |
PROXMOX_HOST='???' | |
PROXMOX_PORT=22 |