Skip to content

Commit f3b57fe

Browse files
committed
Fix: Update Ubuntu 22.04 dependencies for baseline
Signed-off-by: Anil Belur <[email protected]> Change-Id: Ia055662cad9572a4032ac4880bbe85e8b3706ea9
1 parent eb736b5 commit f3b57fe

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

provision/baseline.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@
1313
- name: Install base packages
1414
ansible.builtin.include_tasks: "{{ item }}"
1515
with_first_found:
16-
- "install-base-pkgs-{{ ansible_distribution }}.yaml"
16+
- "install-base-pkgs-{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml"
1717
- "install-base-pkgs-{{ ansible_os_family }}.yaml"
18+
- "install-base-pkgs-{{ ansible_distribution }}.yaml"
1819

1920
- name: Allow jenkins user sudo access
2021
ansible.builtin.copy:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
- name: Install base packages
3+
ansible.builtin.apt:
4+
name:
5+
- build-essential
6+
- devscripts
7+
- equivs
8+
- gdebi
9+
state: latest
10+
become: true

0 commit comments

Comments
 (0)