]> git.proxmox.com Git - mirror_ovs.git/commitdiff
vagrant: Update default box to Fedora-23.
authorJoe Stringer <joe@ovn.org>
Thu, 26 May 2016 00:17:37 +0000 (17:17 -0700)
committerJoe Stringer <joe@ovn.org>
Thu, 26 May 2016 00:40:13 +0000 (17:40 -0700)
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>
INSTALL.md
Vagrantfile

index 5b37786d973d63fd28d52925326373c36edd652a..8a4a5b339c0cc02e739bb65d68b736fae661d9ff 100644 (file)
@@ -608,7 +608,7 @@ tree as found locally in a virtual machine using the following commands:
        vagrant up
        vagrant ssh
 
-This will bring up w Fedora 20 VM by default, alternatively the
+This will bring up w Fedora 23 VM by default, alternatively the
 `Vagrantfile` can be modified to use a different distribution box as
 base. Also, the VM can be reprovisioned at any time:
 
index 8912a3279a06633ff5386d534eb5450018ffcff0..69c1deaefba71f0e890288f9440ac04a1f6d6e2a 100644 (file)
@@ -42,7 +42,7 @@ cp openvswitch-$PACKAGE_VERSION.tar.gz $HOME/rpmbuild/SOURCES
 rpmbuild --bb -D "kversion `uname -r`" /vagrant/rhel/openvswitch-kmod-fedora.spec
 rpmbuild --bb --without check /vagrant/rhel/openvswitch-fedora.spec
 rpm -e openvswitch
-rpm -ivh $HOME/rpmbuild/RPMS/x86_64/openvswitch-$PACKAGE_VERSION-1.fc22.x86_64.rpm
+rpm -ivh $HOME/rpmbuild/RPMS/x86_64/openvswitch-$PACKAGE_VERSION-1.fc23.x86_64.rpm
 systemctl enable openvswitch
 systemctl start openvswitch
 systemctl status openvswitch
@@ -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