[libvirt PATCH 3/7] ci: integration-template: Drop Fedora 35 check

Erik Skultety posted 7 patches 3 years ago
[libvirt PATCH 3/7] ci: integration-template: Drop Fedora 35 check
Posted by Erik Skultety 3 years ago
We no longer support Fedora 35. While at it, we can also tailor the
rest of the check to CentOS Stream 8 since all other supported Red Hat
like platforms have moved onto modular daemons setup already.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
---
 ci/integration.sh | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/ci/integration.sh b/ci/integration.sh
index 21795518c3..160aecf00d 100644
--- a/ci/integration.sh
+++ b/ci/integration.sh
@@ -7,8 +7,7 @@ sudo sh -c "echo DefaultLimitCORE=infinity >> /etc/systemd/system.conf" # Explic
 sudo systemctl daemon-reexec # need to reexec systemd after changing config
 
 source /etc/os-release  # in order to query the vendor-provided variables
-if test "$ID" = "centos" && test "$VERSION_ID" -lt 9 ||
-   test "$ID" = "fedora" && test "$VERSION_ID" -lt 35
+if test "$ID" = "centos" && test "$VERSION_ID" -eq 8
 then
     DAEMONS="libvirtd virtlockd virtlogd"
 else
-- 
2.39.0
Re: [libvirt PATCH 3/7] ci: integration-template: Drop Fedora 35 check
Posted by Martin Kletzander 3 years ago
On Fri, Jan 20, 2023 at 04:05:59PM +0100, Erik Skultety wrote:
>We no longer support Fedora 35. While at it, we can also tailor the

"older than 35" based on the check below.

>rest of the check to CentOS Stream 8 since all other supported Red Hat
>like platforms have moved onto modular daemons setup already.
>
>Signed-off-by: Erik Skultety <eskultet@redhat.com>
>---
> ci/integration.sh | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)
>
>diff --git a/ci/integration.sh b/ci/integration.sh
>index 21795518c3..160aecf00d 100644
>--- a/ci/integration.sh
>+++ b/ci/integration.sh
>@@ -7,8 +7,7 @@ sudo sh -c "echo DefaultLimitCORE=infinity >> /etc/systemd/system.conf" # Explic
> sudo systemctl daemon-reexec # need to reexec systemd after changing config
>
> source /etc/os-release  # in order to query the vendor-provided variables
>-if test "$ID" = "centos" && test "$VERSION_ID" -lt 9 ||
>-   test "$ID" = "fedora" && test "$VERSION_ID" -lt 35
>+if test "$ID" = "centos" && test "$VERSION_ID" -eq 8
> then
>     DAEMONS="libvirtd virtlockd virtlogd"
> else
>-- 
>2.39.0
>