From a276a72b11ae5070ab8b69b02d87e5ce7930d9d3 Mon Sep 17 00:00:00 2001 From: Matthias Luescher Date: Fri, 13 Dec 2024 11:17:08 +0100 Subject: [PATCH] Added Debian trixie dependencies installation task. --- tasks/install_deps.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tasks/install_deps.yml b/tasks/install_deps.yml index 0539b5a..2d2f827 100644 --- a/tasks/install_deps.yml +++ b/tasks/install_deps.yml @@ -56,6 +56,20 @@ become: true when: (ansible_facts.distribution == "Debian" and ansible_facts.distribution_major_version == "12") +- name: Install dependencies on Debian Trixie + ansible.builtin.package: + pkg: + - acl + - liblttng-ust1t64 + - libkrb5-3 + - zlib1g + - libssl3 + - libicu76 + state: present + update_cache: true + become: true + when: (ansible_facts.distribution == "Debian" and ansible_facts.distribution_major_version == "13") + - name: Install dependencies on Ubuntu Xenial systems ansible.builtin.package: pkg: