From c68e990ac734a9e4028a43da9a87261f8a1935d5 Mon Sep 17 00:00:00 2001 From: Eric Hanson Date: Fri, 13 Jul 2018 22:51:43 +0000 Subject: [PATCH] Switch to postgresql 9.6.9 --- README.md | 2 +- install.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 545ec36f..cc614cea 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,7 @@ To setup a user, from a shell prompt, open up a database shell with: ``` $ psql aquameta -psql (9.6.0) +psql (9.6.9) Type "help" for help. aquameta=# select endpoint.register('your_email@example.com'); diff --git a/install.sh b/install.sh index 0fc4609c..d5a031e7 100755 --- a/install.sh +++ b/install.sh @@ -51,9 +51,9 @@ apt-get update -y && apt-get install -y wget ca-certificates lsb-release git pyt ############################################################################# cd /tmp -wget https://ftp.postgresql.org/pub/source/v9.6.0/postgresql-9.6.0.tar.gz -tar -zxvf postgresql-9.6.0.tar.gz -cd postgresql-9.6.0 +wget https://ftp.postgresql.org/pub/source/v9.6.9/postgresql-9.6.9.tar.gz +tar -zxvf postgresql-9.6.9.tar.gz +cd postgresql-9.6.9 ./configure --prefix=/usr/local --enable-nls --with-perl --with-python --with-openssl --with-ossp-uuid --with-libxml make world make install-world