From 0b2f50a3edeca6548084e00fef251001a9772954 Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Fri, 12 Sep 2025 06:41:19 +0200 Subject: [PATCH] [PR #10813/a7e4cee4 backport][stable-11] Remove obsolete test conditions (#10815) Remove obsolete test conditions (#10813) * Fedora 31 and 32 are EOL, remove conditions related (cherry picked from commit a7e4cee47dd1ea6c23a19095c09f2029be42eef9) Signed-off-by: Abhijeet Kasurde Co-authored-by: Abhijeet Kasurde --- tests/integration/targets/timezone/tasks/main.yml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/tests/integration/targets/timezone/tasks/main.yml b/tests/integration/targets/timezone/tasks/main.yml index ff9833aac1..cb76d382ba 100644 --- a/tests/integration/targets/timezone/tasks/main.yml +++ b/tests/integration/targets/timezone/tasks/main.yml @@ -74,22 +74,9 @@ - ansible_distribution == 'Ubuntu' - ansible_facts.distribution_major_version is version('24', '>=') -- name: make sure the dbus service is started under systemd - systemd: - name: dbus - state: started - when: - - ansible_service_mgr == 'systemd' - - ansible_distribution == 'Fedora' - - ansible_facts.distribution_major_version is version('31', '<') - - name: Run tests - # Skip tests on Fedora 31 and 32 because dbus fails to start unless the container is run in privileged mode. - # Even then, it starts unreliably. This may be due to the move to cgroup v2 in Fedora 31 and 32. - # https://www.redhat.com/sysadmin/fedora-31-control-group-v2 when: - - ansible_facts.distribution ~ ansible_facts.distribution_major_version not in ['Fedora31', 'Fedora32'] - not (ansible_os_family == 'Alpine') # TODO - not (ansible_distribution == 'Archlinux') # TODO block: