Commit edc550b65b19668e2a75d6e6eac99016583fded7
1 parent
b27bd2b1
Exists in
spb-stable
and in
3 other branches
Postgres Client Needed for Ubuntu 13.04
It looks like the postgresql-9.1 package didn't include the actual client. Needed to install it separately to get this to work.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
doc/install/databases.md
... | ... | @@ -52,7 +52,7 @@ GitLab supports the following databases: |
52 | 52 | ## PostgreSQL |
53 | 53 | |
54 | 54 | # Install the database packages |
55 | - sudo apt-get install -y postgresql-9.1 libpq-dev | |
55 | + sudo apt-get install -y postgresql-9.1 postgresql-client libpq-dev | |
56 | 56 | |
57 | 57 | # Login to PostgreSQL |
58 | 58 | sudo -u postgres psql -d template1 | ... | ... |