From 35a31af31e12e4daf42f686057f4e4bec0b23475 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 9 Feb 2024 15:27:56 +0100 Subject: [PATCH] don't test discovery on EL9 --- pipelines/vars/forklift_plugins.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pipelines/vars/forklift_plugins.yml b/pipelines/vars/forklift_plugins.yml index ff5edb136..d35f7a6a6 100644 --- a/pipelines/vars/forklift_plugins.yml +++ b/pipelines/vars/forklift_plugins.yml @@ -24,9 +24,9 @@ server_box: - "--enable-foreman-plugin-bootdisk" - - "--enable-foreman-cli-discovery" - - "--enable-foreman-plugin-discovery" - - "--enable-foreman-proxy-plugin-discovery" + - "{{ '--enable-foreman-cli-discovery' if ('9' not in pipeline_os) else '' }}" + - "{{ '--enable-foreman-plugin-discovery' if ('9' not in pipeline_os) else '' }}" + - "{{ '--enable-foreman-proxy-plugin-discovery' if ('9' not in pipeline_os) else '' }}" - "--enable-foreman-cli-google" - "--enable-foreman-plugin-google"