aboutsummaryrefslogtreecommitdiff
path: root/vagrant/bootstrap.sh
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 09:49:32 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 09:49:32 +0100
commit742e7b505d584e5448ccaf593b96672e32ac2502 (patch)
tree94ef7333812b5a8bfc6e1022a05af1ed201cadb3 /vagrant/bootstrap.sh
parentUpdated conf file for Vagrant (Utopic is now used). (diff)
downloadnewspipe-742e7b505d584e5448ccaf593b96672e32ac2502.tar.gz
newspipe-742e7b505d584e5448ccaf593b96672e32ac2502.tar.bz2
newspipe-742e7b505d584e5448ccaf593b96672e32ac2502.zip
Updated conf file for Vagrant (PPostgreSQL 9.4 is now used).
Diffstat (limited to 'vagrant/bootstrap.sh')
-rw-r--r--vagrant/bootstrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/vagrant/bootstrap.sh b/vagrant/bootstrap.sh
index 29d258ba..260ed9a0 100644
--- a/vagrant/bootstrap.sh
+++ b/vagrant/bootstrap.sh
@@ -22,7 +22,7 @@ cp vagrant/conf.cfg-sample conf/conf.cfg
cd ..
# Installation of PostgreSQL
-apt-get install -y postgresql postgresql-server-dev-9.3 postgresql-client
+apt-get install -y postgresql postgresql-server-dev-9.4 postgresql-client
# Configuration of the database
echo "127.0.0.1:5432:aggregator:vagrant:xxYzToW42" > .pgpass
bgstack15