Last active
January 9, 2018 15:58
-
-
Save mcollier/0a4eed2095b33bb1f6343c828d77a328 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while ( ! (find /var/log/azure/Microsoft.Azure.Diagnostics.LinuxDiagnostic/*/extension.log | xargs grep "Start mdsd")); | |
do | |
echo "sleeping for 5" | |
sleep 5 | |
done | |
echo "updating apt pkgs" | |
sudo apt-get -y update | |
echo "installing openjdk9" | |
sudo apt-get -y install openjdk-9-jre | |
echo "finished" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment