Merge branch 'master' of github.com:dmitry-shibanov/virtual-environments into v-dmshib/fix-chromedriver-directory

This commit is contained in:
Dmitry Shibanov
2020-02-05 16:55:57 +03:00
6 changed files with 61 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
################################################################################
## File: postgresql.sh
## Desc: Installs Postgresql
################################################################################
# Source the helpers for use with the script
source $HELPER_SCRIPTS/document.sh
echo "Install libpq-dev"
apt-get install libpq-dev
echo "Install Postgresql Client"
apt-get install postgresql-client
DocumentInstalledItem "$(psql -V 2>&1 | cut -d ' ' -f 1,2,3)"