From 02266a5ed3a00c59ba07616e42df4e6ff1f96607 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20L=C3=BCscher?= Date: Fri, 20 Jan 2023 11:12:49 +0100 Subject: [PATCH 1/2] Added Debian bookworm dependencies installation task. --- tasks/install_deps.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tasks/install_deps.yml b/tasks/install_deps.yml index c05cd29..c39379b 100644 --- a/tasks/install_deps.yml +++ b/tasks/install_deps.yml @@ -39,6 +39,19 @@ update_cache: yes when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "11") +- name: Install dependencies on Debian Bookworm + ansible.builtin.package: + pkg: + - acl + - liblttng-ust1 + - libkrb5-3 + - zlib1g + - libssl3 + - libicu72 + state: present + update_cache: yes + when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "12") + - name: Install dependencies on Ubuntu Xenial systems ansible.builtin.package: pkg: From c14c5402e6be03f904bb055712206f356ae5bf5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20L=C3=BCscher?= Date: Fri, 20 Jan 2023 11:44:57 +0100 Subject: [PATCH 2/2] Use the version codename for Debian bookworm as there is no ID yet. --- tasks/install_deps.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks/install_deps.yml b/tasks/install_deps.yml index c39379b..46ffac1 100644 --- a/tasks/install_deps.yml +++ b/tasks/install_deps.yml @@ -50,7 +50,7 @@ - libicu72 state: present update_cache: yes - when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "12") + when: (ansible_distribution == "Debian" and ansible_distribution_release == "bookworm") - name: Install dependencies on Ubuntu Xenial systems ansible.builtin.package: