From 12fb3054c429c0656f1ba5704e9a2c251047c00d Mon Sep 17 00:00:00 2001
From: mc2zk <mc2zk@git.zephyr-software.com>
Date: Fri, 13 Oct 2017 18:40:56 +0000
Subject: [PATCH] Correcting postgres version number from 9.1 to 9.3

---
 postgres_setup.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/postgres_setup.sh b/postgres_setup.sh
index 916d857ae..efbc65e46 100755
--- a/postgres_setup.sh
+++ b/postgres_setup.sh
@@ -5,8 +5,8 @@ printf ":5432::$USER:1qaz2wsx\nlocalhost:5432:*:$USER:1qaz2wsx\n127.0.0.1:5432:*
 chmod og-rw $HOME/.pgpass
 
 #Allow remote access to PostGres
-sudo su -c "printf \"\nhost \t all \t all \t 127.0.0.1/16 \t md5\nhostssl  all \t all \t 127.0.0.1/16 \t md5\n\" >> /etc/postgresql/9.1/main/pg_hba.conf"
-printf "\nlisten_addresses = '*'\n" | sudo tee -a /etc/postgresql/9.1/main/postgresql.conf > /dev/null
+sudo su -c "printf \"\nhost \t all \t all \t 127.0.0.1/16 \t md5\nhostssl  all \t all \t 127.0.0.1/16 \t md5\n\" >> /etc/postgresql/9.3/main/pg_hba.conf"
+printf "\nlisten_addresses = '*'\n" | sudo tee -a /etc/postgresql/9.3/main/postgresql.conf > /dev/null
 
 #Restart PostGres
 sudo service postgresql restart
-- 
GitLab