Files
loc_az_hci/infrastructure/preload/preload-all-software.ps1
defiQUG c39465c2bd
Some checks failed
Test / test (push) Has been cancelled
Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-08 09:04:46 -08:00

23 lines
914 B
PowerShell

# Master Preload Orchestrator
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "Master Software Preload" -ForegroundColor Cyan
Write-Host "=========================================" -ForegroundColor Cyan
Write-Host "`nOrchestrating all software preloads..." -ForegroundColor Yellow
# Preload Router Server
Write-Host "`n[1/3] Preloading Router Server..." -ForegroundColor Yellow
& "$PSScriptRoot\preload-router-server.ps1"
# Preload Proxmox Hosts
Write-Host "`n[2/3] Preloading Proxmox Hosts..." -ForegroundColor Yellow
Write-Host "Run preload-proxmox-hosts.sh on Proxmox hosts" -ForegroundColor White
# Preload Ubuntu VMs
Write-Host "`n[3/3] Preloading Ubuntu VMs..." -ForegroundColor Yellow
Write-Host "Run preload-ubuntu-vms.sh on Ubuntu VMs" -ForegroundColor White
Write-Host "`nPreload complete. Run verify-preload-complete.ps1 to verify." -ForegroundColor Green