DCD-880: Install postgresql as part of slingshot backup

This commit is contained in:
Ben Partridge
2020-01-03 13:32:27 +11:00
parent 58692b2843
commit 5d543b3f0c
5 changed files with 18 additions and 1 deletions

View File

@@ -11,4 +11,9 @@
- name: Install atlassian-slingshot
yum:
name: atlassian-slingshot
name: atlassian-slingshot
- name: Enable Postgresql from 'extras'
command: amazon-linux-extras install -y "postgresql{{ atl_amazon_extras_postgresql_version }}"
args:
creates: /usr/bin/psql

View File

@@ -0,0 +1,5 @@
---
- name: Install distro-specific backup support packages
include_tasks: "../../tasks/{{ ansible_distribution|lower }}.yml"

View File

@@ -19,4 +19,9 @@
apt:
name: atlassian-slingshot
update_cache: yes
state: present
- name: Install postgresql
apt:
name: postgresql
state: present