We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb736b5 commit f3b57feCopy full SHA for f3b57fe
provision/baseline.yaml
@@ -13,8 +13,9 @@
13
- name: Install base packages
14
ansible.builtin.include_tasks: "{{ item }}"
15
with_first_found:
16
- - "install-base-pkgs-{{ ansible_distribution }}.yaml"
+ - "install-base-pkgs-{{ ansible_distribution }}-{{ ansible_distribution_version }}.yaml"
17
- "install-base-pkgs-{{ ansible_os_family }}.yaml"
18
+ - "install-base-pkgs-{{ ansible_distribution }}.yaml"
19
20
- name: Allow jenkins user sudo access
21
ansible.builtin.copy:
provision/install-base-pkgs-Ubuntu-22.04.yaml
@@ -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