zulip/scripts/lib/setup-yum-repo

29 lines
917 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2018-12-14 03:15:13 +01:00
set -x
set -e
2018-12-17 19:41:03 +01:00
is_centos=false
if [ -e /etc/centos-release ]; then
is_centos=true
yum install -y epel-release
fi
yum update -y
2018-12-14 03:15:13 +01:00
# "Development Tools" is the equivalent of build-essential
yum groupinstall -y "Development Tools"
RHVER="$(rpm -qf --queryformat="%{VERSION}" /etc/redhat-release)"
RHARCH="$(rpm -qf --queryformat="%{ARCH}" /etc/redhat-release)"
PGVER=10
2018-12-17 19:41:03 +01:00
if [ "$is_centos" = true ]; then
# PostgreSQL $PGVER
yum localinstall -y "https://yum.postgresql.org/$PGVER/redhat/rhel-$RHVER-$RHARCH/pgdg-centos$PGVER-$PGVER-2.noarch.rpm"
2018-12-14 03:15:13 +01:00
2018-12-17 19:41:03 +01:00
# PGroonga
# https://pgroonga.github.io/install/centos.html
yum localinstall -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm
else
# TODO only fedora29 for now
dnf install -y "https://download.postgresql.org/pub/repos/yum/$PGVER/fedora/fedora-29-x86_64/pgdg-fedora$PGVER-$PGVER-4.noarch.rpm"
fi