#!/usr/bin/env bash set -x set -e is_centos=false if [ -e /etc/centos-release ]; then is_centos=true yum install -y epel-release fi 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 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" # 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