Install essential packages in UBI

Signed-off-by: Balasankar "Balu" C <balasankar@gitlab.com>
This commit is contained in:
Balasankar "Balu" C 2022-07-04 19:18:21 +05:30
parent 690bb34f74
commit 9441b21608
No known key found for this signature in database
GPG key ID: B77D2E2E23735427

View file

@ -78,7 +78,17 @@ function prepare_debian_environment() {
}
function prepare_ubi_environment() {
echo "UBI preparation scripts"
yum update -y
yum install -by --nodocs \
autoconf cmake gcc gcc-c++ make patch perl bzip2 \
libedit ncurses uuid libarchive curl-devel \
libicu-devel libffi-devel libuuid-devel openssl-devel \
ncurses-devel pcre2-devel zlib-devel libstdc++-static \
libevent-devel redhat-lsb-core procps-ng
yum autoremove -y
yum clean -y all
}
if [[ $1 =~ debian ]]; then