Skip to content

Commit

Permalink
VPC: Add logging For Output
Browse files Browse the repository at this point in the history
  • Loading branch information
steelhead31 committed Aug 21, 2024
1 parent 47d1b55 commit 0bea478
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ansible/pbTestScripts/vagrantPlaybookCheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ startVMPlaybookWin()
fi
# Copy PowerShell Script From Vagrant Share For Performance Reasons & Launch
vagrant winrm -s powershell -e -c 'copy c:/vagrant/BuildJDK_Tmp.ps1 c:/tmp; cd c:/tmp; pwd; ls'
vagrant winrm -e -c 'powershell -ExecutionPolicy Bypass -File c:/tmp/BuildJDK_Tmp.ps1'
vagrant winrm -e -c 'powershell -ExecutionPolicy Bypass -File c:/tmp/BuildJDK_Tmp.ps1' | tee $buildLogPath
else
echo "Python is not installed or is of an unsupported version."
exit 99
Expand All @@ -456,7 +456,7 @@ startVMPlaybookWin()
echo "& sh \"C:/vagrant/pbTestScripts/testJDKWin.sh\"" > testJDK_Tmp.ps1
# Copy PowerShell Script From Vagrant Share For Performance Reasons & Launch
vagrant winrm -s powershell -e -c 'copy c:/vagrant/testJDK_Tmp.ps1 c:/tmp; cd c:/tmp; pwd; ls'
vagrant winrm -e -c 'powershell -ExecutionPolicy Bypass -File c:/tmp/testJDK_Tmp.ps1'
vagrant winrm -e -c 'powershell -ExecutionPolicy Bypass -File c:/tmp/testJDK_Tmp.ps1' | tee $testLogPath
else
echo "Python is not installed or is of an unsupported version."
exit 99
Expand Down

0 comments on commit 0bea478

Please sign in to comment.