8 lines
174 B
Bash
8 lines
174 B
Bash
|
#!/bin/bash
|
||
|
. "../src/01-common.sh" || exit 5
|
||
|
title "Installing pgsql..."
|
||
|
|
||
|
apti postgresql postgresql-contrib
|
||
|
sudo service postgresql restart
|
||
|
installed php && apti php-pgsql
|