File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# -*- mode: sh -*-
3
- # © Copyright IBM Corporation 2015, 2022
3
+ # © Copyright IBM Corporation 2015, 2023
4
4
#
5
5
#
6
6
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -42,21 +42,12 @@ if ($UBUNTU); then
42
42
echo " deb ${APT_URL} ${UBUNTU_CODENAME} -security main restricted" >> /etc/apt/sources.list
43
43
# Install additional packages required by MQ, this install process and the runtime scripts
44
44
EXTRA_DEBS=" bash bc ca-certificates coreutils curl debianutils file findutils gawk grep libc-bin mount passwd procps sed tar util-linux"
45
- # On ARM CPUs, there is no IBM JRE, so install another one
46
- if [ " ${CPU_ARCH} " == " aarch64" ]; then
47
- EXTRA_DEBS=" ${EXTRA_DEBS} openjdk-8-jre"
48
- fi
49
45
apt-get update
50
46
apt-get install -y --no-install-recommends ${EXTRA_DEBS}
51
47
fi
52
48
53
49
if ($RPM ); then
54
50
EXTRA_RPMS=" bash bc ca-certificates file findutils gawk glibc-common grep ncurses-compat-libs passwd procps-ng sed shadow-utils tar util-linux which"
55
- # On ARM CPUs, there is no IBM JRE, so install another one
56
- if [ " ${CPU_ARCH} " == " aarch64" ]; then
57
- EXTRA_RPMS=" ${EXTRA_RPMS} java-1.8.0-openjdk-headless"
58
- fi
59
-
60
51
# Install additional packages required by MQ, this install process and the runtime scripts
61
52
$YUM && yum -y install --setopt install_weak_deps=false ${EXTRA_RPMS}
62
53
$MICRODNF && microdnf --disableplugin=subscription-manager install ${EXTRA_RPMS}
You can’t perform that action at this time.
0 commit comments