mirror of
https://github.com/actions/runner-images.git
synced 2025-12-12 12:06:59 +00:00
add libpq-dev
This commit is contained in:
16
images/linux/scripts/installers/postgresql.sh
Normal file
16
images/linux/scripts/installers/postgresql.sh
Normal 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))"
|
||||
Reference in New Issue
Block a user