Skip to content

Commit a613012

Browse files
committed
Install dependencies for Debian Bullseye
Also add a comment showing where github lists the dependencies to be required. This should help users submit updates for future os versions.
1 parent 15ebd69 commit a613012

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

tasks/install_deps.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
# All dependencies derived from https://github.com/actions/runner/blob/main/docs/start/envlinux.md
23
- name: Install dependencies on Debian Stretch
34
package:
45
pkg:
@@ -29,6 +30,21 @@
2930
tags:
3031
- install
3132

33+
- name: Install dependencies on Debian Bullseye
34+
package:
35+
pkg:
36+
- acl
37+
- liblttng-ust0
38+
- libkrb5-3
39+
- zlib1g
40+
- libssl1.1
41+
- libicu67
42+
state: present
43+
update_cache: yes
44+
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "11")
45+
tags:
46+
- install
47+
3248
- name: Install dependencies on Ubuntu Xenial systems
3349
package:
3450
pkg:

0 commit comments

Comments
 (0)