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