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

Postgres repo install problem #655

Merged
merged 2 commits into from
May 24, 2021
Merged
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 community-nightlies/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pgdg_check ()

yum install -d0 -e0 -y "${repo_url}"

if ! yum info -q postgresql13-server &> /dev/null; then
if ! yum info -q -y postgresql13-server &> /dev/null; then
echo "PGDG repositories don't have postgresql13-server package for your operating system"
echo "Cannot install Citus, exiting."
exit 1
Expand Down
2 changes: 1 addition & 1 deletion community/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pgdg_check ()

yum install -d0 -e0 -y "${repo_url}"

if ! yum info -q postgresql13-server &> /dev/null; then
if ! yum info -q -y postgresql13-server &> /dev/null; then
echo "PGDG repositories don't have postgresql13-server package for your operating system"
echo "Cannot install Citus, exiting."
exit 1
Expand Down
2 changes: 1 addition & 1 deletion enterprise-nightlies/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pgdg_check ()

yum install -d0 -e0 -y "${repo_url}"

if ! yum info -q postgresql13-server &> /dev/null; then
if ! yum info -q -y postgresql13-server &> /dev/null; then
echo "PGDG repositories don't have postgresql13-server package for your operating system"
echo "Cannot install Citus, exiting."
exit 1
Expand Down
2 changes: 1 addition & 1 deletion enterprise/rpm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pgdg_check ()

yum install -d0 -e0 -y "${repo_url}"

if ! yum info -q postgresql13-server &> /dev/null; then
if ! yum info -y -q postgresql13-server &> /dev/null; then
echo "PGDG repositories don't have postgresql13-server package for your operating system"
echo "Cannot install Citus, exiting."
exit 1
Expand Down