Skip to content

Commit 1407199

Browse files
authored
Merge pull request rails#169 from yahonda/ubuntu1910
Use Ubuntu 19.10
2 parents ac0798a + d7c4b0c commit 1407199

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ That's it.
2525
After the installation has finished, you can access the virtual machine with
2626

2727
host $ vagrant ssh
28-
Welcome to Ubuntu 19.04 (GNU/Linux 5.0.0-13-generic x86_64)
28+
Welcome to Ubuntu 19.10 (GNU/Linux 5.3.0-18-generic x86_64)
2929
...
3030
vagrant@rails-dev-box:~$
3131

Vagrantfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33
Vagrant.configure('2') do |config|
4-
config.vm.box = 'ubuntu/disco64' # 19.04
4+
config.vm.box = 'ubuntu/eoan64' # 19.10
55
config.vm.hostname = 'rails-dev-box'
66

77
config.vm.network :forwarded_port, guest: 3000, host: 3000
@@ -12,4 +12,7 @@ Vagrant.configure('2') do |config|
1212
v.memory = ENV.fetch('RAILS_DEV_BOX_RAM', 2048).to_i
1313
v.cpus = ENV.fetch('RAILS_DEV_BOX_CPUS', 2).to_i
1414
end
15+
16+
config.vm.boot_timeout = 600
17+
1518
end

0 commit comments

Comments
 (0)