-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5252 from chaimaeouardani:master
PiperOrigin-RevId: 683211751
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# linux_packages/openjdk_msft.py | ||
|
||
|
||
def AptInstall(vm): | ||
""" | ||
Installs Microsoft Build of OpenJDK on an Ubuntu-based VM. | ||
Args: | ||
vm: The VM instance where the OpenJDK should be installed. | ||
""" | ||
vm.RemoteCommand('ubuntu_release=$(lsb_release -rs)') | ||
|
||
vm.RemoteCommand( | ||
'wget https://packages.microsoft.com/config/ubuntu/${ubuntu_release}/packages-microsoft-prod.deb' | ||
' -O packages-microsoft-prod.deb' | ||
) | ||
vm.RemoteCommand('sudo dpkg -i packages-microsoft-prod.deb') | ||
|
||
vm.RemoteCommand('sudo apt-get install -y apt-transport-https') | ||
vm.RemoteCommand('sudo apt-get update') | ||
vm.RemoteCommand('sudo apt-get install -y msopenjdk-21') | ||
|
||
vm.RemoteCommand('java -version') | ||
|
||
|
||
def YumInstall(vm): | ||
""" | ||
Installs Microsoft Build of OpenJDK on a RHEL/CentOS-based VM. | ||
Args: | ||
vm: The VM instance where the OpenJDK should be installed. | ||
""" | ||
vm.RemoteCommand('sudo yum install -y wget') | ||
vm.RemoteCommand( | ||
'sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc' | ||
) | ||
vm.RemoteCommand( | ||
'wget https://packages.microsoft.com/config/rhel/7/prod.repo -O' | ||
' /etc/yum.repos.d/microsoft.repo' | ||
) | ||
vm.RemoteCommand('sudo yum update -y') | ||
|
||
vm.RemoteCommand('sudo yum install -y msopenjdk-17') | ||
|
||
vm.RemoteCommand('java -version') |