Skip to content

Instantly share code, notes, and snippets.

@jamesbeedy
Created May 2, 2017 14:34
Show Gist options
  • Select an option

  • Save jamesbeedy/31b046fc11f03e786673bbbf0d442024 to your computer and use it in GitHub Desktop.

Select an option

Save jamesbeedy/31b046fc11f03e786673bbbf0d442024 to your computer and use it in GitHub Desktop.
vagrant libvirtd + lxdbr0
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "opensuse/openSUSE-42.1-x86_64"
config.vm.provider :libvirt do |libvirt|
libvirt.driver = "qemu"
end
config.vm.network :public_network,
:dev => "lxdbr0",
:mode => "bridge",
:type => "bridge"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment