Skip to content

Instantly share code, notes, and snippets.

@kszarek
Last active November 10, 2017 08:32
Show Gist options
  • Save kszarek/d8cd31fa85c886f85cd3 to your computer and use it in GitHub Desktop.
Save kszarek/d8cd31fa85c886f85cd3 to your computer and use it in GitHub Desktop.
Install postgres 9.4 on Ubuntu
#!/bin/bash
echo 'deb http://apt.postgresql.org/pub/repos/apt/ trusty-pgdg main' > /etc/apt/sources.list.d/pgdg.list
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt-get -q update
apt-get -y install postgresql-client-9.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment