Added Missing Agent Files

This commit is contained in:
2025-10-17 20:30:19 -06:00
parent ce0acd036c
commit 4e030c50e4

View File

@@ -784,13 +784,19 @@ function InstallOrUpdate-BorealisAgent {
# Copy Agent Files to Virtual Python Environment
$coreAgentFiles = @(
(Join-Path $agentSourceRoot 'agent.py'),
(Join-Path $agentSourceRoot 'Python_API_Endpoints'),
(Join-Path $agentSourceRoot 'Roles'),
(Join-Path $agentSourceRoot 'Scripts'),
(Join-Path $agentSourceRoot 'agent_deployment.py'),
(Join-Path $agentSourceRoot 'agent.py'),
(Join-Path $agentSourceRoot 'ansible-ee-version.txt'),
(Join-Path $agentSourceRoot 'Borealis.ico'),
(Join-Path $agentSourceRoot 'fcntl_stud.py'),
(Join-Path $agentSourceRoot 'launch_service.ps1'),
(Join-Path $agentSourceRoot 'role_manager.py'),
(Join-Path $agentSourceRoot 'Roles')
(Join-Path $agentSourceRoot 'security.py'),
(Join-Path $agentSourceRoot 'sitecustomize.py'),
(Join-Path $agentSourceRoot 'termios_stub.py')
)
Copy-Item $coreAgentFiles -Destination $agentDestinationFolder -Recurse -Force