diff mbox

[ovs-dev,3/6] vagrant: Update default box to Fedora-23.

Message ID 1463770199-24391-4-git-send-email-joe@ovn.org
State Accepted
Headers show

Commit Message

Joe Stringer May 20, 2016, 6:49 p.m. UTC
This brings a newer kernel (4.2) and newer iproute2, allowing more of
the tests to run by default.

Signed-off-by: Joe Stringer <joe@ovn.org>
---
 INSTALL.md  | 2 +-
 Vagrantfile | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

Comments

Andy Zhou May 23, 2016, 11:31 p.m. UTC | #1
On Fri, May 20, 2016 at 11:49 AM, Joe Stringer <joe@ovn.org> wrote:

> This brings a newer kernel (4.2) and newer iproute2, allowing more of
> the tests to run by default.
>
> Signed-off-by: Joe Stringer <joe@ovn.org>
>

 Acked-by: Andy Zhou <azhou@ovn.org>  Thanks.
Joe Stringer May 26, 2016, 12:42 a.m. UTC | #2
On 23 May 2016 at 16:31, Andy Zhou <azhou@ovn.org> wrote:
>
>
> On Fri, May 20, 2016 at 11:49 AM, Joe Stringer <joe@ovn.org> wrote:
>>
>> This brings a newer kernel (4.2) and newer iproute2, allowing more of
>> the tests to run by default.
>>
>> Signed-off-by: Joe Stringer <joe@ovn.org>
>
>
>  Acked-by: Andy Zhou <azhou@ovn.org>  Thanks.

Thanks, applied.

Sidenote, somehow patchwork didn't recognise your ack above. Probably
the whitespace at the start of the line, or the trailing message.
diff mbox

Patch

diff --git a/INSTALL.md b/INSTALL.md
index 82f5188eacb8..25e042544b49 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -633,7 +633,7 @@  tree as found locally in a virtual machine using the following command:
 
 	vagrant up
 
-This will bring up a Fedora 20 VM by default. If you wish to use a
+This will bring up a Fedora 23 VM by default. If you wish to use a
 different box or a vagrant backend not supported by the default box,
 the `Vagrantfile` can be modified to use a different box as base.
 
diff --git a/Vagrantfile b/Vagrantfile
index 38553cd2d8ad..4f2e0fdb7c48 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -54,8 +54,8 @@  make check-system-userspace
 SCRIPT
 
 Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
-  config.vm.define "fedora-22" do |fedora|
-       fedora.vm.box = "bento/fedora-22"
+  config.vm.define "fedora-23" do |fedora|
+       fedora.vm.box = "bento/fedora-23"
        fedora.vm.provision "bootstrap", type: "shell", inline: $bootstrap_fedora
        fedora.vm.provision "configure_ovs", type: "shell", inline: $configure_ovs
        fedora.vm.provision "build_ovs", type: "shell", inline: $build_ovs