From 6a087df317ba5f62058cc3112a0faea5d2571c8e Mon Sep 17 00:00:00 2001 From: Carlos Date: Sat, 21 Apr 2018 17:50:02 -0300 Subject: [PATCH 1/2] update to ubuntu 18.04 --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index b5cea455..79505e64 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -3,7 +3,7 @@ Vagrant.configure('2') do |config| # FIXME: When upgrading to a future version of Ubuntu check if the workaround # near the top of bootstrap.sh is still needed. If not, please delete it. - config.vm.box = 'ubuntu/artful64' # 17.10 + config.vm.box = 'ubuntu/bionic64' # 18.04 config.vm.hostname = 'rails-dev-box' config.vm.network :forwarded_port, guest: 3000, host: 3000 From f391db2595fa7a24e36f57e47bec6cfd34423372 Mon Sep 17 00:00:00 2001 From: Carlos Date: Sat, 21 Apr 2018 17:56:51 -0300 Subject: [PATCH 2/2] update this file to run gRep project --- bootstrap.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.sh b/bootstrap.sh index 1b370ae2..36b4f8fb 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -47,8 +47,8 @@ install RabbitMQ rabbitmq-server install PostgreSQL postgresql postgresql-contrib libpq-dev sudo -u postgres createuser --superuser vagrant -sudo -u postgres createdb -O vagrant activerecord_unittest -sudo -u postgres createdb -O vagrant activerecord_unittest2 +sudo -u postgres createdb -O vagrant grep_test +sudo -u postgres createdb -O vagrant grep_development debconf-set-selections <<< 'mysql-server mysql-server/root_password password root' debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password root'