Initial commit: loc_az_hci (smom-dbis-138 excluded via .gitignore)
Some checks failed
Test / test (push) Has been cancelled

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
defiQUG
2026-02-08 09:04:46 -08:00
commit c39465c2bd
386 changed files with 50649 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# 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