From 73b144cfdafcaf2165b36546775663926d3db0f6 Mon Sep 17 00:00:00 2001 From: Xiaofeng Wang Date: Tue, 21 May 2024 09:48:36 +0800 Subject: [PATCH] test: skip persistent log test on fedora 41 workaround https://gitlab.com/fedora/bootc/base-images/-/issues/10 Signed-off-by: Xiaofeng Wang --- playbooks/check-system.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playbooks/check-system.yaml b/playbooks/check-system.yaml index 848a830..8fd48a8 100644 --- a/playbooks/check-system.yaml +++ b/playbooks/check-system.yaml @@ -598,7 +598,6 @@ failed_counter: "{{ failed_counter | int + 1 }}" # case: check persistent log in system - # Skipped for RHEL test due to bug https://github.com/CentOS/centos-bootc/issues/354 - name: check journald persistent logging block: - name: list boots @@ -618,6 +617,8 @@ - name: failed count + 1 set_fact: failed_counter: "{{ failed_counter | int + 1 }}" + when: ansible_facts['distribution_version'] != "41" + # skip f41 for issue https://gitlab.com/fedora/bootc/base-images/-/issues/10 # case: check reboot times - name: check reboot times