mirror of
https://bitbucket.org/atlassian/dc-deployments-automation.git
synced 2025-12-14 17:03:06 -06:00
13 lines
339 B
YAML
13 lines
339 B
YAML
---
|
|
|
|
# Amazon Linux 2 supplies extra packages via a special command.
|
|
- name: Enable Postgresql from 'extras'
|
|
command: amazon-linux-extras enable -y "postgresql{{ postgres_version }}"
|
|
|
|
- name: Install Java and other base packages
|
|
yum:
|
|
name:
|
|
- java-{{java_version}}-openjdk-devel
|
|
- git-{{git_version}}
|
|
- postgresql
|