The systemd-networkd script in vmdebootstrap that is used to build the Debian libvirt vagrant boxes is a bit too eager assigning DHCP to network interfaces. This patch changes the network script to only take care of the primary network interface (first non loopback).
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			865 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			865 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| # -*- mode: ruby -*-
 | |
| # vi: set ft=ruby :
 | |
| 
 | |
| Vagrant.configure(2) do |config|
 | |
|   config.vm.box = "debian/buster64"
 | |
| 
 | |
|   config.vm.hostname = "gvaldap.local"
 | |
|   config.vm.network :private_network, :ip => "172.16.3.3"
 | |
| 
 | |
|   config.vm.network "forwarded_port", guest: 8000, host: 8001
 | |
| 
 | |
|   config.vm.synced_folder "../gvasalt/states/", "/srv/salt/"
 | |
|   config.vm.synced_folder "../gvasalt/pillar/", "/srv/pillar/"
 | |
| 
 | |
|   config.vm.provider :libvirt do |libvirt|
 | |
|       libvirt.memory = 1024
 | |
|   end
 | |
| 
 | |
|   config.vm.provision :shell, path: "change-vmdebootstrap-default-dhcp.sh"
 | |
| 
 | |
|   config.vm.provision :salt do |salt|
 | |
|       salt.bootstrap_options = "-x python3"
 | |
|       salt.minion_id = "gvaldap"
 | |
|       salt.masterless = true
 | |
|       salt.run_highstate = true
 | |
|       salt.verbose = true
 | |
|       salt.colorize = true
 | |
|       salt.log_level = "warning"
 | |
|       salt.grains_config = "salt/grains"
 | |
|   end
 | |
| end
 |