Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion roles/repos/tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
ansible.builtin.apt_key:
url: "{{ elasticstack_repo_key }}"
state: absent
when: ansible_distribution_major_version <= "12"
when: (ansible_distribution_major_version | int) <= 12

# NOTE: Workaround for older ansible-core versions combined with Python 3.12 on managed nodes (e.g. Ubuntu 24.04),
# where ansible.builtin.get_url may fail with HTTPSConnection/cert_file related errors. We intentionally use curl via
Expand Down
Loading