1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://linuxeye.com
- #
- # Notes: OneinStack for CentOS/RedHat 7+ Debian 9+ and Ubuntu 16+
- #
- # Project home page:
- # https://oneinstack.com
- # https://github.com/oneinstack/oneinstack
- Install_OpenJDK11() {
- if [ "${Family}" == 'rhel' ]; then
- yum -y install java-11-openjdk-devel
- JAVA_HOME=/usr/lib/jvm/java-11-openjdk
- elif [ "${Family}" == 'debian' ]; then
- apt-get --no-install-recommends -y install openjdk-11-jdk
- JAVA_HOME=/usr/lib/jvm/java-11-openjdk-${SYS_ARCH}
- elif [ "${Family}" == 'ubuntu' ]; then
- if [[ "${Ubuntu_ver}" =~ ^16$ ]]; then
- cat ${oneinstack_dir}/src/adoptium.key | sudo apt-key add -
- apt-add-repository --yes https://mirrors.tuna.tsinghua.edu.cn/Adoptium/deb
- apt -y update
- apt-get --no-install-recommends -y install temurin-11-jdk
- JAVA_HOME=/usr/lib/jvm/temurin-11-jdk-${SYS_ARCH}
- else
- apt-get --no-install-recommends -y install openjdk-11-jdk
- JAVA_HOME=/usr/lib/jvm/java-11-openjdk-${SYS_ARCH}
- fi
- fi
- if [ -e "${JAVA_HOME}/bin/java" ]; then
- cat > /etc/profile.d/openjdk.sh << EOF
- export JAVA_HOME=${JAVA_HOME}
- export CLASSPATH=\$JAVA_HOME/lib/tools.jar:\$JAVA_HOME/lib/dt.jar:\$JAVA_HOME/lib
- EOF
- . /etc/profile.d/openjdk.sh
- echo "${CSUCCESS}OpenJDK11 installed successfully! ${CEND}"
- else
- echo "${CFAILURE}OpenJDK11 install failed, Please contact the author! ${CEND}" && grep -Ew 'NAME|ID|ID_LIKE|VERSION_ID|PRETTY_NAME' /etc/os-release
- kill -9 $$; exit 1;
- fi
- }
|