From nobody Fri Apr 19 01:54:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1562842512; cv=none; d=zoho.com; s=zohoarc; b=YZ66iq76U1P8QOHvWDpbgy1CfsvdFYaJkLlKr3N27A7iLSCWzmTkz3ooRiTzGOsKc8RTTi/E7ZozP9cMIrpnpkChdRJi+jEDuji0SFqfKoB/C45TC/b7rzH5UdU5/lLkcnPPQkhu3G5wAt9Xd9UPuKbwfFYkGGU+dkodMz27mKk= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1562842512; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=dZQSXPljCo1xGydi5QTHKhOugwveN8vXGRKTvKcg4IA=; b=Ugjj1f2chKcY+AMpVPFFRXd6mivRAhgtpaAfGhYs6VsP9SyEIFVJv3JpX0wDdCPQLeFubrjTB5WAv0vLSm1lCv7Yx+nMEDV8BrFLuMNuE+1h+Yd4H20iIgH0RsaLIINRlW3ANh/a7UaI9Koxf/P2PtzEtCVXROAp+3zEmzsv5+M= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1562842512446901.6479125484857; Thu, 11 Jul 2019 03:55:12 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 9695F4DB10; Thu, 11 Jul 2019 10:55:10 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 6516619C69; Thu, 11 Jul 2019 10:55:10 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 068C41833004; Thu, 11 Jul 2019 10:55:10 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x6BAt88R023209 for ; Thu, 11 Jul 2019 06:55:08 -0400 Received: by smtp.corp.redhat.com (Postfix) id A03621001B2B; Thu, 11 Jul 2019 10:55:08 +0000 (UTC) Received: from dhcp-17-95.lcy.redhat.com (unknown [10.42.17.95]) by smtp.corp.redhat.com (Postfix) with ESMTP id 1CBF81001B29; Thu, 11 Jul 2019 10:55:07 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 11 Jul 2019 11:54:59 +0100 Message-Id: <20190711105501.9804-2-berrange@redhat.com> In-Reply-To: <20190711105501.9804-1-berrange@redhat.com> References: <20190711105501.9804-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 1/3] guests: add openvz repository on CentOS 7 X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Thu, 11 Jul 2019 10:55:11 +0000 (UTC) The OpenVZ site provides a yum repo built against RHEL-7 that includes the prlsdk-devel RPM needed for the VZ driver. This repo has quite alot of packages that replace stuff from standard RHEL repos, so the yum config file is set to whitelist only the minimal RPMs we need to do builds. Fortunately they have no deps which would cause replacement of standard RHEL RPMs. Signed-off-by: Daniel P. Berrang=C3=A9 --- guests/playbooks/update/tasks/base.yml | 10 ++++++++++ guests/playbooks/update/templates/openvz.repo.j2 | 9 +++++++++ 2 files changed, 19 insertions(+) create mode 100644 guests/playbooks/update/templates/openvz.repo.j2 diff --git a/guests/playbooks/update/tasks/base.yml b/guests/playbooks/upda= te/tasks/base.yml index e0efe5d..a5b8810 100644 --- a/guests/playbooks/update/tasks/base.yml +++ b/guests/playbooks/update/tasks/base.yml @@ -9,6 +9,16 @@ - os_name =3D=3D 'Fedora' - os_version =3D=3D 'Rawhide' =20 +- name: Enable openvz repository + template: + src: '{{ playbook_base }}/templates/openvz.repo.j2' + dest: /etc/yum.repos.d/openvz.repo + owner: root + group: root + when: + - os_name =3D=3D 'CentOS' + - os_version =3D=3D '7' + - name: Update installed packages package: name: '*' diff --git a/guests/playbooks/update/templates/openvz.repo.j2 b/guests/play= books/update/templates/openvz.repo.j2 new file mode 100644 index 0000000..78acb36 --- /dev/null +++ b/guests/playbooks/update/templates/openvz.repo.j2 @@ -0,0 +1,9 @@ +[openvz] +name=3DOpenVZ addons +baseurl=3Dhttps://download.openvz.org/virtuozzo/releases/7.0/x86_64/os/ +enabled=3D1 +gpgcheck=3D0 +skip_if_unavailable=3D0 +metadata_expire=3D6h +priority=3D90 +includepkgs=3Dlibprlcommon libprlsdk libprlsdk-devel libprlsdk-headers lib= prlxmlmodel --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri Apr 19 01:54:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1562842514; cv=none; d=zoho.com; s=zohoarc; b=Bn8SEjrdn+PoQA0IHDOoYUAGLuvOjscsi0KbMrGhLgZY2hby1jiEkss2RhrB+FXdWTLRWfLpaq99POZ6TI4lTYIzXHaf1jYDq6mix0BHv2Ylu31n4O5+9gR3HMPHtOcqwXV9m74OOl5scxGqQlxCgejhytSRE5TUNczIMnDPfG4= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1562842514; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=RghUguZ87L6I5bEh+H3p/QbnEVVjmycOzvf6A/wfP2Y=; b=m7pqgPtN0WZvRA5yXi6wq+y1mb0KEf9IRsXy7A+6wcSBGZumNnXKLDnOAssga1TOeX0+MCSeRzbPzLURwYnh/3fDVw5LclA8Syb449kFgXlMwDtjNsQdIHE970o8AZxL7cajehkbsZOWSYbRsKCXtG6FcLla//XKgHq9Q7QNl1U= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1562842514768804.0088770232088; Thu, 11 Jul 2019 03:55:14 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 22E493082E60; Thu, 11 Jul 2019 10:55:13 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id EBDB75C221; Thu, 11 Jul 2019 10:55:12 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 91BDC1833006; Thu, 11 Jul 2019 10:55:12 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x6BAt9aX023218 for ; Thu, 11 Jul 2019 06:55:09 -0400 Received: by smtp.corp.redhat.com (Postfix) id 7007E1001B2B; Thu, 11 Jul 2019 10:55:09 +0000 (UTC) Received: from dhcp-17-95.lcy.redhat.com (unknown [10.42.17.95]) by smtp.corp.redhat.com (Postfix) with ESMTP id E12AC1001B29; Thu, 11 Jul 2019 10:55:08 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 11 Jul 2019 11:55:00 +0100 Message-Id: <20190711105501.9804-3-berrange@redhat.com> In-Reply-To: <20190711105501.9804-1-berrange@redhat.com> References: <20190711105501.9804-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 2/3] guests: define mapping for the libprlsdk package X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Thu, 11 Jul 2019 10:55:13 +0000 (UTC) Add a mapping exclusively for CentOS 7 to pull in the libprlsdk package, since other distros don't have it available at this time. Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: Andrea Bolognani --- guests/vars/mappings.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guests/vars/mappings.yml b/guests/vars/mappings.yml index 4a231c3..6ea3128 100644 --- a/guests/vars/mappings.yml +++ b/guests/vars/mappings.yml @@ -365,6 +365,10 @@ mappings: rpm: libpciaccess-devel cross-policy-deb: foreign =20 + libprlsdk: + default: + CentOS7: libprlsdk-devel + librbd: deb: librbd-dev Fedora: librbd-devel --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list From nobody Fri Apr 19 01:54:36 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1562842517; cv=none; d=zoho.com; s=zohoarc; b=J47nJ3ZM74JFTg1K5ekzhIwwKidW96f5kQnEM3h6SG/+AMcmM8bSH1IjEURgvHJtulgg7SlOfDK/VGLNKJWcE3gMaYZtD7QoYSDT1wrJ9HIbJTJfu3NBQf6ggachsT23PNonySz7pp03b/C153rZre9qMFR2k2Q8/Mq7CPaynnE= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1562842517; h=Content-Type:Content-Transfer-Encoding:Date:From:In-Reply-To:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:MIME-Version:Message-ID:References:Sender:Subject:To:ARC-Authentication-Results; bh=icOTNDMYDMDnPZMGWrlavleL/Bohy0vDzNE7K9CT4+Y=; b=XKyZUXWzFEK0u3Vf2ih9l44FWS97vlt01pKcWRcy/qjGQZ2ZX7gEFN9AfFW8dZ3NbVcFY+56QF6bJA4+g7XmUGLJq7RC8v3Ao9jw+JHOMJWRj7StKLoVk9mdszTV28XZJ7jayXQaZW7OV9cxHNEtjeiNJT7VlWEM+d79SCk0Q0g= ARC-Authentication-Results: i=1; mx.zoho.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass header.from= (p=none dis=none) header.from= Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1562842517124721.3252240202065; Thu, 11 Jul 2019 03:55:17 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 93D34C057F2B; Thu, 11 Jul 2019 10:55:15 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 678CF60606; Thu, 11 Jul 2019 10:55:15 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 1CB54206D2; Thu, 11 Jul 2019 10:55:15 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id x6BAtAjS023226 for ; Thu, 11 Jul 2019 06:55:10 -0400 Received: by smtp.corp.redhat.com (Postfix) id 403F81001B11; Thu, 11 Jul 2019 10:55:10 +0000 (UTC) Received: from dhcp-17-95.lcy.redhat.com (unknown [10.42.17.95]) by smtp.corp.redhat.com (Postfix) with ESMTP id B1AFB1001B29; Thu, 11 Jul 2019 10:55:09 +0000 (UTC) From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= To: libvir-list@redhat.com Date: Thu, 11 Jul 2019 11:55:01 +0100 Message-Id: <20190711105501.9804-4-berrange@redhat.com> In-Reply-To: <20190711105501.9804-1-berrange@redhat.com> References: <20190711105501.9804-1-berrange@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH 3/3] guests: add libprlsdk package to libvirt project X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Thu, 11 Jul 2019 10:55:16 +0000 (UTC) Signed-off-by: Daniel P. Berrang=C3=A9 Reviewed-by: Andrea Bolognani --- guests/vars/projects/libvirt.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/guests/vars/projects/libvirt.yml b/guests/vars/projects/libvir= t.yml index 688dfa3..3cc1300 100644 --- a/guests/vars/projects/libvirt.yml +++ b/guests/vars/projects/libvirt.yml @@ -29,6 +29,7 @@ packages: - libparted - libpcap - libpciaccess + - libprlsdk - librbd - libselinux - libssh --=20 2.21.0 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list