Skip to content

Commit

Permalink
Bug fix: do not use QEMU sessions (implements #53)
Browse files Browse the repository at this point in the history
As mentioned in #53, Vagrant 2.2 uses QEMU sessions on Fedora, breaking
the creation of custom virtual networks.

Fix: disable the use of QEMU sessions in Vagrantfile
  • Loading branch information
ipspace committed Dec 2, 2021
1 parent 70fe38d commit c8bfd3b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions netsim/templates/provider/libvirt/Vagrantfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Vagrant.configure("2") do |config|
{% if n.mgmt is defined and n.mgmt.mac is defined %}
{{ name }}.vm.provider :libvirt do |domain|
domain.management_network_mac = "{{n.mgmt.mac}}"
domain.qemu_use_session = false
end
{% endif %}
{% include n.device ~ "-domain.j2" %}
Expand Down

0 comments on commit c8bfd3b

Please sign in to comment.