mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-25 10:10:19 -06:00
c78904501d
2) Remove logic for Ubuntu 18 as we remove the support for it.
38 lines
1.2 KiB
Bash
Executable File
38 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$EUID" -ne 0 ]
|
|
then echo "This script must be run as root"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Running apt update..."
|
|
apt update
|
|
|
|
echo "Installing system pre-requisites..."
|
|
apt install -y curl apt-transport-https ca-certificates gnupg
|
|
|
|
echo "Removing yarn (which may not be the package we expect)..."
|
|
dpkg -r yarn
|
|
|
|
# PostgreSQL
|
|
echo "Setting up the PostgreSQL repo..."
|
|
curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
|
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
|
|
|
# Node repo
|
|
echo "Setting up the NodeJS repo..."
|
|
curl -sL https://deb.nodesource.com/setup_16.x | bash -
|
|
|
|
# Yarn repo
|
|
echo "Setting up the Yarn repo..."
|
|
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
|
|
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
|
|
|
|
echo "Running apt update..."
|
|
apt update
|
|
|
|
# Install pre-reqs
|
|
echo "Installing build pre-requisites..."
|
|
apt install -y build-essential python3-dev python3-venv python3-sphinx python3-wheel python3-pip libpq-dev libffi-dev nodejs yarn libkrb5-dev
|
|
python3 -m pip install sphinxcontrib-youtube
|