Skip to content

Commit e0a07d9

Browse files
Merge pull request #158 from lueschem/master
Added support for Debian bookworm
2 parents 469e19a + c14c540 commit e0a07d9

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_release == "bookworm")
54+
4255
- name: Install dependencies on Ubuntu Xenial systems
4356
ansible.builtin.package:
4457
pkg:

0 commit comments

Comments
 (0)