From 361ec68d3e1b07c67c50cabf19776bcdc43a4d64 Mon Sep 17 00:00:00 2001 From: yatinkarel Date: Sep 11 2020 05:52:51 +0000 Subject: [Cloud SIG] Use util-linux instead of util-linux-ng Although util-linux rpm in CentOS8 Provides util-linux-ng but it fails with: No match for group package "util-linux-ng". Some package like SecretStorage fails to build due to missing util-linux with:- /usr/bin/xvfb-run: line 105: getopt: command not found Changing buildroot default for CloudSIG to rely on util-linux instead of util-linux-ng. --- diff --git a/scripts/sigs/cloud/openstack/config.sh b/scripts/sigs/cloud/openstack/config.sh index d587e03..566e0b2 100644 --- a/scripts/sigs/cloud/openstack/config.sh +++ b/scripts/sigs/cloud/openstack/config.sh @@ -2,8 +2,8 @@ if [[ "x$DIST" == "x8" || "x$DIST" == "x8s" ]] then - BUILDROOT_DEFAULT="bash bzip2 coreutils cpio diffutils redhat-release findutils gawk gcc gcc-c++ grep gzip info make patch redhat-rpm-config rpm-build sed unzip util-linux-ng git which buildsys-tools xz" + BUILDROOT_DEFAULT="bash bzip2 coreutils cpio diffutils redhat-release findutils gawk gcc gcc-c++ grep gzip info make patch redhat-rpm-config rpm-build sed unzip util-linux git which buildsys-tools xz" else - BUILDROOT_DEFAULT="openstack-macros bash bzip2 coreutils cpio diffutils redhat-release findutils gawk gcc gcc-c++ grep gzip info make patch redhat-rpm-config rpm-build sed unzip util-linux-ng git which buildsys-tools xz" + BUILDROOT_DEFAULT="openstack-macros bash bzip2 coreutils cpio diffutils redhat-release findutils gawk gcc gcc-c++ grep gzip info make patch redhat-rpm-config rpm-build sed unzip util-linux git which buildsys-tools xz" fi COMMON_INHERITANCE=false