From 83ee3d04a443c621e8f902a7de5876cf3886071e Mon Sep 17 00:00:00 2001 From: Mark Gurevich Date: Thu, 7 Oct 2021 15:59:11 -0400 Subject: [PATCH] Remove epel-release from list of required RPMs --- xCAT-genesis-builder/buildrpm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xCAT-genesis-builder/buildrpm b/xCAT-genesis-builder/buildrpm index 49c05ff4c..b1ee2d3c3 100755 --- a/xCAT-genesis-builder/buildrpm +++ b/xCAT-genesis-builder/buildrpm @@ -5,20 +5,20 @@ # this whole dir into it somewhere (like /tmp). # Then run this script. The optional 1st arg should be mcp if you are building against mcp. -# Currently, *Fedora 26* is the only OS supported to build genesis-base for ppc64, and Centos 6.5 for x86_64 +# Currently, *Fedora 34* and *RedHat 8* are the only OSes supported to build genesis-base for ppc64, and Centos 6.5 for x86_64 HOSTOS="$1" DIR=`dirname $0` #DIR=`realpath $DIR` DIR=`readlink -f $DIR` BUILDARCH=`uname -m` -REQUIRED_PACKAGES="rpmdevtools rpm-build screen lldpad mstflint epel-release ipmitool pciutils mdadm dosfstools usbutils bind-utils psmisc nmap-ncat ethtool kexec-tools" +REQUIRED_PACKAGES="rpmdevtools rpm-build screen lldpad mstflint ipmitool pciutils mdadm dosfstools usbutils bind-utils psmisc nmap-ncat ethtool kexec-tools" # Install required packages for required_package in $REQUIRED_PACKAGES; do yum -y install $required_package if [ $? -ne 0 ]; then - echo "ERROR: Can not install required packages $required_package, make sure EPEL repository is configured" + echo "ERROR: Can not install required package $required_package, make sure EPEL repository is configured" exit 1 fi done