mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 04:37:09 +00:00
16 lines
495 B
Bash
16 lines
495 B
Bash
#!/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))" |