Skip to content

Commit 02266a5

Browse files
committed
Added Debian bookworm dependencies installation task.
1 parent 32b93a5 commit 02266a5

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

tasks/install_deps.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,19 @@
3939
update_cache: yes
4040
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "11")
4141

42+
- name: Install dependencies on Debian Bookworm
43+
ansible.builtin.package:
44+
pkg:
45+
- acl
46+
- liblttng-ust1
47+
- libkrb5-3
48+
- zlib1g
49+
- libssl3
50+
- libicu72
51+
state: present
52+
update_cache: yes
53+
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "12")
54+
4255
- name: Install dependencies on Ubuntu Xenial systems
4356
ansible.builtin.package:
4457
pkg:

0 commit comments

Comments
 (0)