Robert Kaussow
b5ad28a900
All checks were successful
continuous-integration/drone/push Build is passing
25 lines
843 B
YAML
25 lines
843 B
YAML
---
|
|
- name: Load helper variables
|
|
include_vars: "main.yml"
|
|
|
|
- block:
|
|
- name: Add PostgreSQL repository
|
|
yum_repository:
|
|
name: "postgresql-{{ __postgres_version }}"
|
|
file: "{{ postgres_repository_filename }}"
|
|
description: "PostgreSQL {{ __postgres_version }} yum repository"
|
|
baseurl: "https://download.postgresql.org/pub/repos/yum/{{ __postgres_version }}/redhat/rhel-{{ ansible_distribution_major_version }}-{{ ansible_architecture }}"
|
|
gpgcheck: yes
|
|
enabled: yes
|
|
gpgkey: "https://download.postgresql.org/pub/repos/yum/RPM-GPG-KEY-PGDG-{{ __postgres_version }}"
|
|
|
|
- name: Install dependencies
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
loop:
|
|
- python2-psycopg2
|
|
become: True
|
|
become_user: root
|
|
when: postgres_repository_enabled | bool
|