Created
May 2, 2017 14:34
-
-
Save jamesbeedy/31b046fc11f03e786673bbbf0d442024 to your computer and use it in GitHub Desktop.
vagrant libvirtd + lxdbr0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- 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