mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-09-10 21:18:42 -06:00
Restructured Agent Deployment Code
This commit is contained in:
53
Borealis.ps1
53
Borealis.ps1
@@ -334,47 +334,28 @@ function Ensure-AgentTasks {
|
||||
$supScript= Join-Path $ScriptRoot 'Data\Agent\agent_supervisor.py'
|
||||
$wdName = 'Borealis Agent - Watchdog'
|
||||
|
||||
$taskStub = @"
|
||||
$ErrorActionPreference='Continue'
|
||||
$sup = '$supName'
|
||||
$py = "$py"
|
||||
$supScr = "$supScript"
|
||||
$wd = '$wdName'
|
||||
# Elevate and run the external registrar script with parameters
|
||||
$regScript = Join-Path $ScriptRoot 'Data\Agent\Scripts\register_agent_tasks.ps1'
|
||||
$wdSource = Join-Path $ScriptRoot 'Data\Agent\Scripts\watchdog.ps1'
|
||||
if (-not (Test-Path $regScript)) { Write-Host "Register helper script not found: $regScript" -ForegroundColor Red; return }
|
||||
if (-not (Test-Path $wdSource)) { Write-Host "Watchdog script not found: $wdSource" -ForegroundColor Red; return }
|
||||
|
||||
try { Unregister-ScheduledTask -TaskName $sup -Confirm:$false -ErrorAction SilentlyContinue } catch {}
|
||||
$a = New-ScheduledTaskAction -Execute $py -Argument ('-W ignore::SyntaxWarning "' + $supScr + '"')
|
||||
$t = New-ScheduledTaskTrigger -AtStartup
|
||||
$s = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -Hidden -RestartCount 3 -RestartInterval (New-TimeSpan -Minutes 1)
|
||||
$p = New-ScheduledTaskPrincipal -UserId 'SYSTEM' -LogonType ServiceAccount -RunLevel Highest
|
||||
Register-ScheduledTask -TaskName $sup -Action $a -Trigger $t -Settings $s -Principal $p -Force | Out-Null
|
||||
|
||||
$wdScript = @"
|
||||
$ErrorActionPreference='SilentlyContinue'
|
||||
if (-not (Get-ScheduledTask -TaskName "$sup" -ErrorAction SilentlyContinue)) { exit }
|
||||
$st = (Get-ScheduledTask -TaskName "$sup").State
|
||||
if ($st -eq 'Disabled') { Enable-ScheduledTask -TaskName "$sup" | Out-Null }
|
||||
if ($st -ne 'Running') { Start-ScheduledTask -TaskName "$sup" | Out-Null }
|
||||
"@
|
||||
$wdFile = Join-Path $env:ProgramData 'Borealis\watchdog.ps1'
|
||||
New-Item -ItemType Directory -Force -Path (Split-Path $wdFile -Parent) | Out-Null
|
||||
Set-Content -Path $wdFile -Value $wdScript -Encoding UTF8
|
||||
try { Unregister-ScheduledTask -TaskName $wd -Confirm:$false -ErrorAction SilentlyContinue } catch {}
|
||||
$wa = New-ScheduledTaskAction -Execute 'powershell.exe' -Argument ('-NoProfile -ExecutionPolicy Bypass -File "' + $wdFile + '"')
|
||||
$wt = New-ScheduledTaskTrigger -Once -At ([datetime]::Now.AddMinutes(1)) -RepetitionInterval (New-TimeSpan -Minutes 5) -RepetitionDuration (New-TimeSpan -Days 365)
|
||||
$ws = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -Hidden
|
||||
Register-ScheduledTask -TaskName $wd -Action $wa -Trigger $wt -Settings $ws -Principal $p -Force | Out-Null
|
||||
Start-ScheduledTask -TaskName $sup | Out-Null
|
||||
@"
|
||||
$tmpElev = New-TemporaryFile
|
||||
Set-Content -Path $tmpElev.FullName -Value $taskStub -Encoding UTF8
|
||||
$psi = New-Object System.Diagnostics.ProcessStartInfo
|
||||
$psi.FileName = 'powershell.exe'
|
||||
$psi.Verb = 'runas'
|
||||
$psi.ArgumentList = @('-NoProfile','-ExecutionPolicy','Bypass','-File', $tmpElev.FullName)
|
||||
$psi.UseShellExecute = $true
|
||||
try { $proc = [System.Diagnostics.Process]::Start($psi); $proc.WaitForExit() } catch {}
|
||||
Remove-Item $tmpElev.FullName -Force -ErrorAction SilentlyContinue
|
||||
"@
|
||||
$psi.ArgumentList = @(
|
||||
'-NoProfile','-ExecutionPolicy','Bypass',
|
||||
'-File', $regScript,
|
||||
'-SupName', $supName,
|
||||
'-PythonExe', $py,
|
||||
'-SupScript', $supScript,
|
||||
'-WdName', $wdName,
|
||||
'-WdSource', $wdSource
|
||||
)
|
||||
try { $proc = [System.Diagnostics.Process]::Start($psi); $proc.WaitForExit() } catch {
|
||||
Write-Host "Failed to elevate for task registration." -ForegroundColor Red
|
||||
}
|
||||
}
|
||||
function InstallOrUpdate-BorealisAgent {
|
||||
Write-Host "Ensuring Agent Dependencies Exist..." -ForegroundColor DarkCyan
|
||||
|
43
Data/Agent/Scripts/register_agent_tasks.ps1
Normal file
43
Data/Agent/Scripts/register_agent_tasks.ps1
Normal file
@@ -0,0 +1,43 @@
|
||||
1param(
|
||||
[Parameter(Mandatory=$true)] [string]$SupName,
|
||||
[Parameter(Mandatory=$true)] [string]$PythonExe,
|
||||
[Parameter(Mandatory=$true)] [string]$SupScript,
|
||||
[Parameter(Mandatory=$true)] [string]$WdName,
|
||||
[Parameter(Mandatory=$true)] [string]$WdSource
|
||||
)
|
||||
|
||||
$ErrorActionPreference = 'Continue'
|
||||
|
||||
try {
|
||||
# Prepare principal
|
||||
$principal = New-ScheduledTaskPrincipal -UserId 'SYSTEM' -LogonType ServiceAccount -RunLevel Highest
|
||||
|
||||
# Supervisor task
|
||||
try { Unregister-ScheduledTask -TaskName $SupName -Confirm:$false -ErrorAction SilentlyContinue } catch {}
|
||||
$supArg = ('-W ignore::SyntaxWarning "{0}"' -f $SupScript)
|
||||
$supAction = New-ScheduledTaskAction -Execute $PythonExe -Argument $supArg
|
||||
$supTrigger = New-ScheduledTaskTrigger -AtStartup
|
||||
$supSettings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -Hidden -RestartCount 3 -RestartInterval (New-TimeSpan -Minutes 1)
|
||||
Register-ScheduledTask -TaskName $SupName -Action $supAction -Trigger $supTrigger -Settings $supSettings -Principal $principal -Force | Out-Null
|
||||
|
||||
# Watchdog script deployment
|
||||
$wdDest = Join-Path $env:ProgramData 'Borealis\\watchdog.ps1'
|
||||
New-Item -ItemType Directory -Force -Path (Split-Path $wdDest -Parent) | Out-Null
|
||||
Copy-Item -Path $WdSource -Destination $wdDest -Force
|
||||
|
||||
# Watchdog task (5-min repetition for 1 year)
|
||||
try { Unregister-ScheduledTask -TaskName $WdName -Confirm:$false -ErrorAction SilentlyContinue } catch {}
|
||||
$wdArg = ('-NoProfile -ExecutionPolicy Bypass -File "{0}" -SupervisorTaskName "{1}"' -f $wdDest, $SupName)
|
||||
$wdAction = New-ScheduledTaskAction -Execute 'powershell.exe' -Argument $wdArg
|
||||
$wdTrigger = New-ScheduledTaskTrigger -Once -At ([datetime]::Now.AddMinutes(1)) -RepetitionInterval (New-TimeSpan -Minutes 5) -RepetitionDuration (New-TimeSpan -Days 365)
|
||||
$wdSettings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries -Hidden
|
||||
Register-ScheduledTask -TaskName $WdName -Action $wdAction -Trigger $wdTrigger -Settings $wdSettings -Principal $principal -Force | Out-Null
|
||||
|
||||
# Ensure supervisor is running
|
||||
Start-ScheduledTask -TaskName $SupName | Out-Null
|
||||
|
||||
} catch {
|
||||
Write-Error $_
|
||||
exit 1
|
||||
}
|
||||
|
11
Data/Agent/Scripts/watchdog.ps1
Normal file
11
Data/Agent/Scripts/watchdog.ps1
Normal file
@@ -0,0 +1,11 @@
|
||||
param(
|
||||
[string]$SupervisorTaskName = 'Borealis Agent - Supervisor'
|
||||
)
|
||||
|
||||
$ErrorActionPreference = 'SilentlyContinue'
|
||||
$task = Get-ScheduledTask -TaskName $SupervisorTaskName -ErrorAction SilentlyContinue
|
||||
if (-not $task) { exit }
|
||||
$st = $task.State
|
||||
if ($st -eq 'Disabled') { Enable-ScheduledTask -TaskName $SupervisorTaskName | Out-Null }
|
||||
if ($st -ne 'Running') { Start-ScheduledTask -TaskName $SupervisorTaskName | Out-Null }
|
||||
|
Reference in New Issue
Block a user