#!/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 # Enable postgres sudo systemctl enable postgresql # Status nginx sudo systemctl status postgresql