xoxys.postgres/tasks/prepare.yml
Robert Kaussow 8507a31cab
All checks were successful
continuous-integration/drone/push Build is passing
feat: add test for Rocky Linux 8 (#1)
2022-04-04 21:51:15 +02:00

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