We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed4b47a commit a276a72Copy full SHA for a276a72
tasks/install_deps.yml
@@ -56,6 +56,20 @@
56
become: true
57
when: (ansible_facts.distribution == "Debian" and ansible_facts.distribution_major_version == "12")
58
59
+- name: Install dependencies on Debian Trixie
60
+ ansible.builtin.package:
61
+ pkg:
62
+ - acl
63
+ - liblttng-ust1t64
64
+ - libkrb5-3
65
+ - zlib1g
66
+ - libssl3
67
+ - libicu76
68
+ state: present
69
+ update_cache: true
70
+ become: true
71
+ when: (ansible_facts.distribution == "Debian" and ansible_facts.distribution_major_version == "13")
72
+
73
- name: Install dependencies on Ubuntu Xenial systems
74
ansible.builtin.package:
75
pkg:
0 commit comments