From 629921e0faea9739aeb926a6c67a443cbf936b96 Mon Sep 17 00:00:00 2001 From: AndreyIvanov42 <93121155+AndreyIvanov42@users.noreply.github.com> Date: Mon, 15 Nov 2021 13:46:07 +0400 Subject: [PATCH] RHEL/CentOS 7 Fix for Lets Encrypt Change (#3601) --- src/Misc/layoutbin/installdependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Misc/layoutbin/installdependencies.sh b/src/Misc/layoutbin/installdependencies.sh index ba844bd116..fa6f90fcb6 100755 --- a/src/Misc/layoutbin/installdependencies.sh +++ b/src/Misc/layoutbin/installdependencies.sh @@ -204,7 +204,7 @@ then fi # install lttng-ust separately since it's not part of offical package repository - yum install -y wget && wget -P /etc/yum.repos.d/ https://packages.efficios.com/repo.files/EfficiOS-RHEL7-x86-64.repo && rpmkeys --import https://packages.efficios.com/rhel/repo.key && yum updateinfo -y && yum install -y lttng-ust + yum install -y wget ca-certificates && wget -P /etc/yum.repos.d/ https://packages.efficios.com/repo.files/EfficiOS-RHEL7-x86-64.repo && rpmkeys --import https://packages.efficios.com/rhel/repo.key && yum updateinfo -y && yum install -y lttng-ust if [ $? -ne 0 ] then echo "'lttng-ust' installation failed with exit code '$?'"