]> xenbits.xensource.com Git - libvirt.git/commitdiff
ci: integration: Adjust the check for CentOS Stream version
authorErik Skultety <eskultet@redhat.com>
Wed, 13 Sep 2023 15:05:02 +0000 (17:05 +0200)
committerErik Skultety <eskultet@redhat.com>
Tue, 19 Sep 2023 11:35:58 +0000 (13:35 +0200)
All supported versions of Fedora and CentOS Stream 9 default to modular
setup, it's probably better if we cosmetically adjust the CentOS Stream
version check to make it explicit that monolithic daemon services ought
to be started only on Stream 8.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
ci/jobs.sh

index 2bc6f86e450784116abb81272976fb4c55033508..adb798d1279542279faaec1989f7c9f463645169 100644 (file)
@@ -89,7 +89,7 @@ run_integration() {
     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
+    if test "$ID" = "centos" && test "$VERSION_ID" -eq 8
     then
         DAEMONS="libvirtd virtlockd virtlogd"
     else