ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Vagrant Libvirt and Fedora 30

    IT Discussion
    1
    1
    464
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • stacksofplatesS
      stacksofplates
      last edited by

      If any of you use vagrant-libvirt and upgraded to Fedora 30 you might notice something strange. I finally figured it out after reviewing a pull request. Vagrant-libvirt was only using the user-session and not the default session even if you are in the libvirt group. So your networks wouldn't be available to the Vagrant boxes. Here's how to fix it:

      Put the following in ~/.vagrant.d/Vagrantfile

      Vagrant.configure("2") do |config|
        config.vm.provider :libvirt do |libvirt|
          libvirt.qemu_use_session = false
        end
      end
      

      Now it should behave like it used to before Fedora 30.

      1 Reply Last reply Reply Quote 7
      • 1 / 1
      • First post
        Last post