Skip to content

update to ubuntu 18.04 #151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down