From 7be95c8bbee101ccea841ef642fa57ff1b97346d Mon Sep 17 00:00:00 2001 From: "patchback[bot]" <45432694+patchback[bot]@users.noreply.github.com> Date: Thu, 24 Feb 2022 23:22:14 +0100 Subject: [PATCH] Temporarily disable Java keytool installation on Archlinux (#4283) (#4284) * Temporarily disable Java keytool installation on Archlinux. * Fix comment. (cherry picked from commit 0d0e695d8ff39aa64a8e5f43b691605729c43b30) Co-authored-by: Felix Fontein --- tests/integration/targets/setup_java_keytool/tasks/main.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/targets/setup_java_keytool/tasks/main.yml b/tests/integration/targets/setup_java_keytool/tasks/main.yml index be84495266..fb909320e0 100644 --- a/tests/integration/targets/setup_java_keytool/tasks/main.yml +++ b/tests/integration/targets/setup_java_keytool/tasks/main.yml @@ -4,10 +4,12 @@ # and should not be used as examples of how to write Ansible roles # #################################################################### - set_fact: + # TODO: re-enable Archlinux! has_java_keytool: >- {{ ansible_os_family not in ['Darwin', 'FreeBSD'] and not (ansible_distribution == "CentOS" and ansible_distribution_version is version("7.0", "<")) + and not (ansible_distribution == "Archlinux") }} - name: Include OS-specific variables