Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions roles/postgresql_server/tasks/RedHat_pre.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
name: pgdg-common
description: PostgreSQL common for RHEL/CentOS
baseurl: "https://download.postgresql.org/pub/repos/yum/common/redhat/rhel-$releasever-$basearch"
gpgkey: >-
https://download.postgresql.org/pub/repos/yum/keys/PGDG-RPM-GPG-KEY-
{{ (ansible_architecture in ['aarch64', 'arm64']) | ternary('AARCH64-', '') }}
RHEL
gpgkey: "https://download.postgresql.org/pub/repos/yum/keys/PGDG-RPM-GPG-KEY-{{ (ansible_architecture in ['aarch64', 'arm64']) | ternary('AARCH64-', '') }}RHEL"
tags: molecule-idempotence-notest

- name: Install PostgreSQL version repository
Expand All @@ -31,10 +28,7 @@
name: pgdg
description: PostgreSQL {{ postgresql_version }} for RHEL/CentOS
baseurl: "https://download.postgresql.org/pub/repos/yum/{{ postgresql_version }}/redhat/rhel-$releasever-$basearch"
gpgkey: >-
https://download.postgresql.org/pub/repos/yum/keys/PGDG-RPM-GPG-KEY-
{{ (ansible_architecture in ['aarch64', 'arm64']) | ternary('AARCH64-', '') }}
RHEL
gpgkey: "https://download.postgresql.org/pub/repos/yum/keys/PGDG-RPM-GPG-KEY-{{ (ansible_architecture in ['aarch64', 'arm64']) | ternary('AARCH64-', '') }}RHEL"
tags: molecule-idempotence-notest

- name: Disable default Postgres module in RHEL 8 or greater
Expand Down
Loading