From 9a221ef7e89dc5f01a2fd314b310357d2cee21e0 Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Tue, 23 May 2017 17:34:22 -0400 Subject: [PATCH] Use Ubuntu 17.04 --- README.md | 2 +- Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b530dd0b..73b4cee0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ That's it. After the installation has finished, you can access the virtual machine with host $ vagrant ssh - Welcome to Ubuntu 16.10 (GNU/Linux 4.8.0-26-generic x86_64) + Welcome to Ubuntu 17.04 (GNU/Linux 4.10.0-21-generic x86_64) ... ubuntu@rails-dev-box:~$ diff --git a/Vagrantfile b/Vagrantfile index c0371db3..ff24d8e9 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ # -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure('2') do |config| - config.vm.box = 'ubuntu/yakkety64' # 16.10 + config.vm.box = 'ubuntu/zesty64' # 17.04 config.vm.hostname = 'rails-dev-box' config.vm.network :forwarded_port, guest: 3000, host: 3000