Skip to content

Commit 1b17a64

Browse files
committed
go back to Ubuntu 19.04
Could not get guest additions working, in particular shared folders.
1 parent 1407199 commit 1b17a64

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
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.10 (GNU/Linux 5.3.0-18-generic x86_64)
28+
Welcome to Ubuntu 19.04 (GNU/Linux 5.0.0-32-generic x86_64)
2929
...
3030
vagrant@rails-dev-box:~$
3131

Vagrantfile

Lines changed: 1 addition & 4 deletions
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/eoan64' # 19.10
4+
config.vm.box = 'ubuntu/disco64' # 19.04
55
config.vm.hostname = 'rails-dev-box'
66

77
config.vm.network :forwarded_port, guest: 3000, host: 3000
@@ -12,7 +12,4 @@ 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-
1815
end

0 commit comments

Comments
 (0)