mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-16 09:53:06 -06:00
first pass at basic AL2022 support
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
---
|
||||
|
||||
- name: Install Amazon-Linux-specific support packages
|
||||
- name: Install Amazon-Linux-2-specific support packages
|
||||
ansible.builtin.yum:
|
||||
name:
|
||||
- dejavu-sans-fonts
|
||||
10
roles/linux_common/tasks/amazon-2022.yml
Normal file
10
roles/linux_common/tasks/amazon-2022.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
|
||||
- name: Install Amazon-Linux-2022-specific support packages
|
||||
ansible.builtin.dnf:
|
||||
name:
|
||||
- dejavu-sans-fonts
|
||||
- file
|
||||
- git-{{ git_version }}
|
||||
- libxml2
|
||||
- shadow-utils
|
||||
@@ -3,7 +3,7 @@
|
||||
# Note: Try and limit these to packages that are distro-specific, and
|
||||
# place commonly-named ones below.
|
||||
- name: Install distro-specific prerequisites
|
||||
ansible.builtin.include_tasks: "{{ ansible_distribution|lower }}.yml"
|
||||
ansible.builtin.include_tasks: "{{ ansible_distribution | lower }}-{{ ansible_distribution_version }}.yml"
|
||||
|
||||
- name: Install common support packages
|
||||
ansible.builtin.package:
|
||||
|
||||
Reference in New Issue
Block a user