Azure rendering solution deployment framework

This commit is contained in:
Rick Shahid 2022-12-11 09:29:51 -08:00
Родитель 44a9d1deb6
Коммит c7f258f673
2 изменённых файлов: 8 добавлений и 6 удалений

Просмотреть файл

@ -174,10 +174,11 @@ switch ($renderManager) {
Write-Host "Customize (Start): Royal Render Server"
Start-Process -FilePath $schedulerRootDirectory\$installFile -ArgumentList "-serviceServer" -Wait -RedirectStandardOutput "$logFileName-server.output.txt" -RedirectStandardError "$logFileName-server.error.txt"
Write-Host "Customize (End): Royal Render Server"
} else {
Write-Host "Customize (Start): Royal Render Client"
Start-Process -FilePath $schedulerRootDirectory\$installFile -ArgumentList "-service" -Wait -RedirectStandardOutput "$logFileName-client.output.txt" -RedirectStandardError "$logFileName-client.error.txt"
Write-Host "Customize (End): Royal Render Client"
}
Write-Host "Customize (Start): Royal Render Client"
Start-Process -FilePath $schedulerRootDirectory\$installFile -ArgumentList "-service" -Wait -RedirectStandardOutput "$logFileName-client.output.txt" -RedirectStandardError "$logFileName-client.error.txt"
Write-Host "Customize (End): Royal Render Client"
Write-Host "Customize (Start): Royal Render Auto Start"
$installFile = "bin\rrAutostartservice"

Просмотреть файл

@ -205,10 +205,11 @@ case $renderManager in
echo "Customize (Start): Royal Render Server"
$schedulerRootDirectory/$installFile -serviceServer 1> "$logFileName-server.output.txt" 2> "$logFileName-server.error.txt"
echo "Customize (End): Royal Render Server"
else
echo "Customize (Start): Royal Render Client"
$schedulerRootDirectory/$installFile -service 1> "$logFileName-client.output.txt" 2> "$logFileName-client.error.txt"
echo "Customize (End): Royal Render Client"
fi
echo "Customize (Start): Royal Render Client"
$schedulerRootDirectory/$installFile -service 1> "$logFileName-client.output.txt" 2> "$logFileName-client.error.txt"
echo "Customize (End): Royal Render Client"
echo "Customize (Start): Royal Render Auto Start"
installFile="bin/rrAutostartservice"