mirror of https://github.com/zulip/zulip.git
20 lines
601 B
Bash
Executable File
20 lines
601 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
set -e
|
|
|
|
yum install -y epel-release
|
|
yum update -y
|
|
|
|
# "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
|
|
# PostgreSQL $PGVER
|
|
yum localinstall -y "https://yum.postgresql.org/$PGVER/redhat/rhel-$RHVER-$RHARCH/pgdg-centos$PGVER-$PGVER-2.noarch.rpm"
|
|
|
|
# PGroonga
|
|
# https://pgroonga.github.io/install/centos.html
|
|
yum localinstall -y https://packages.groonga.org/centos/groonga-release-latest.noarch.rpm
|