sh.osa.cubetiqs.com/postgres-setup.sh
2021-04-03 14:02:31 +07:00

13 lines
217 B
Bash

#!/bin/bash
# Catch errors
set -e
# Update the repository
sudo apt-get update
# Upgrade repository software
sudo apt upgrade -y
# Install postgres and common utils
sudo apt install postgresql postgresql-contrib -y