fix: Use correct ISO names from pve-storage

This commit is contained in:
devmatrix 2026-02-16 14:26:38 +00:00
parent c322bc87d6
commit 8689184060
1 changed files with 2 additions and 2 deletions

View File

@ -174,12 +174,12 @@ else
fi
# Check for Windows ISO
WIN_ISO="$ISO_DIR/Win11_Ent_LTSC_IoT.iso"
WIN_ISO="$ISO_DIR/Win11_IoT_Enterprise_LTSC.iso"
WIN_ISO_ALT="$ISO_DIR/Win11.iso"
if [ -f "$WIN_ISO" ]; then
log "✓ Windows LTSC IoT ISO found"
WIN_ISO_FILE="Win11_Ent_LTSC_IoT.iso"
WIN_ISO_FILE="Win11_IoT_Enterprise_LTSC.iso"
elif [ -f "$WIN_ISO_ALT" ]; then
log "✓ Windows 11 ISO found"
WIN_ISO_FILE="Win11.iso"