Skip to content

Commit

Permalink
Fixes for vagrant/libvirt
Browse files Browse the repository at this point in the history
- Adds network name for libvirt private network
- Adds a host_ip for libvirt private network, to allow creation of the network if it doesn't already exist+

Signed-off-by: Jason DeTiberus <detiber@users.noreply.github.com>
  • Loading branch information
detiber committed Aug 21, 2020
1 parent 0bed1c6 commit b292e2f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deploy/vagrant/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Vagrant.configure('2') do |config|

provisioner.vm.network :private_network,
virtualbox__intnet: "tink_network",
libvirt__network_name: "tink_network",
libvirt__host_ip: "192.168.1.254",
libvirt__dhcp_enabled: false,
libvirt__forward_mode: 'none',
auto_config: false
Expand All @@ -41,6 +43,7 @@ Vagrant.configure('2') do |config|
worker.vm.network :private_network,
mac: "080027000001",
virtualbox__intnet: "tink_network",
libvirt__network_name: "tink_network",
libvirt__dhcp_enabled: false,
libvirt__forward_mode: 'none',
auto_config: false
Expand Down

0 comments on commit b292e2f

Please sign in to comment.