summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorJoe Stringer <joe@ovn.org>2016-05-25 17:17:37 -0700
committerJoe Stringer <joe@ovn.org>2016-05-25 17:40:13 -0700
commit53de7528be8edb9de83532d6b129f9124485eabd (patch)
tree2c0dd621f309e10b6ebfc9d9e425953f0be3f8d6 /Vagrantfile
parent6a6b35fcf0a6fd4e1c10046d8789edbbb241d89c (diff)
downloadopenvswitch-53de7528be8edb9de83532d6b129f9124485eabd.tar.gz
vagrant: Update default box to Fedora-23.
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>
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 8912a3279..69c1deaef 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -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