pgsql rework

This commit is contained in:
Anthony Axenov 2024-07-31 23:32:46 +08:00
parent 7159850e83
commit bf970f58cd
Signed by: anthony
GPG Key ID: EA9EC32FF7CCD4EC

View File

@ -1,16 +1,14 @@
#!/bin/bash
##makedesc: Install postgresql (latest) and php-pgsql (if php is installed)
source `dirname $0`/../helpers || exit 255
echo
echo "==============================================="
echo "Installing postgresql (latest)..."
echo "==============================================="
echo
title
installed() {
command -v "$1" >/dev/null 2>&1
}
sudo apt install -y --autoremove postgresql postgresql-contrib
sudo service postgresql restart
installed 'php' && sudo apt install -y --autoremove php-pgsql
require postgresql postgresql-contrib && \
sudo service postgresql restart && \
{
echo
success "openvpn installed!"
postgres --version
echo
}