Robert Kaussow
dd16f0218b
All checks were successful
continuous-integration/drone/pr Build is passing
14 lines
602 B
YAML
14 lines
602 B
YAML
---
|
|
- 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 }}"
|
|
become: True
|
|
become_user: root
|
|
when: postgres_repository_enabled | bool
|