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

CB-20936: Reverted the temporary fix as it's no longer needed #791

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion saltstack/base/salt/postgresql/init.sls
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ install-postgres:
dnf -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm
dnf module -y disable postgresql
dnf clean all
dnf -y install postgresql11-server postgresql11 postgresql11-devel --skip-broken --nobest
dnf -y install postgresql11-server postgresql11 postgresql11-devel
{% elif grains['os_family'] == 'RedHat' and grains['osmajorrelease'] | int == 7 %}
install-postgres:
pkg.installed:
Expand Down
1 change: 1 addition & 0 deletions scripts/salt-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ function install_with_yum() {
function enable_epel_repository() {
if [ "${OS}" == "redhat8" ] ; then
dnf install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
dnf --enablerepo=powertools install perl-IPC-Run -y
elif [ "${OS}" == "redhat7" ] ; then
curl https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm -o epel-release-latest-7.noarch.rpm && yum install --nogpgcheck -y ./epel-release-latest-7.noarch.rpm
elif [ "${OS}" == "centos7" ] ; then
Expand Down