[libvirt] [jenkins-ci PATCH] guests: Install EPEL on CentOS 7 container

Fabiano Fidêncio fidencio at redhat.com
Wed Oct 9 15:52:27 UTC 2019


Since commit d63d6a59cc we're installing EPEL on CentOS7 in order to
have both "ninja" and "python36-*" packages in the system.

However, we've forgot to add the very code to the lcitool so the
containers would also have EPEL release installed.

Signed-off-by: Fabiano Fidêncio <fidencio at redhat.com>
---
 guests/lcitool | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/guests/lcitool b/guests/lcitool
index a3ef137..0d11d37 100755
--- a/guests/lcitool
+++ b/guests/lcitool
@@ -714,6 +714,14 @@ class Application:
                         {package_manager} autoremove -y && \\
                         {package_manager} clean all -y
                 """).format(**varmap))
+            else if os_name == "CentOS" and os_version == "7":
+                sys.stdout.write(textwrap.dedent("""
+                    RUN {package_manager} update -y && \\
+                        {package_manager} install -y epel-release && \\
+                        {package_manager} install -y {pkgs} && \\
+                        {package_manager} autoremove -y && \\
+                        {package_manager} clean all -y
+                """).format(**varmap))
             else:
                 sys.stdout.write(textwrap.dedent("""
                     RUN {package_manager} update -y && \\
-- 
2.23.0




More information about the libvir-list mailing list