Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make postgresql RPM link OS generic #22

Merged
merged 3 commits into from
Dec 15, 2023
Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion roles/postgresql/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# mirsg.postgresql - download and install
postgresql_install:
disable_gpg_check: false
rpm: "https://download.postgresql.org/pub/repos/yum/reporpms/EL-{{ ansible_facts['distribution_major_version'] }}-x86_64/pgdg-redhat-repo-latest.noarch.rpm"
rpm: "https://download.postgresql.org/pub/repos/yum/reporpms/EL-{{ ansible_facts['distribution_major_version'] }}-{{ ansible_facts['ansible_architecture'] }}/pgdg-redhat-repo-latest.noarch.rpm"

Check failure on line 12 in roles/postgresql/defaults/main.yml

View workflow job for this annotation

GitHub Actions / linting

yaml[line-length]

Line too long (195 > 160 characters)
yum_package: "{{ postgresql_package_name }}-server"
yum_contrib_package: "{{ postgresql_package_name }}-contrib"

Expand Down
Loading