Some checks failed
Test / test (push) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
914 B
PowerShell
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
|
|
|