Update vagrant setup to stretch64 with LXC
This commit is contained in:
		
							parent
							
								
									40c07745d2
								
							
						
					
					
						commit
						c676415c97
					
				
					 2 changed files with 3 additions and 10 deletions
				
			
		
							
								
								
									
										9
									
								
								Vagrantfile
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										9
									
								
								Vagrantfile
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -2,10 +2,10 @@
 | 
			
		|||
# vi: set ft=ruby :
 | 
			
		||||
 | 
			
		||||
Vagrant.configure(2) do |config|
 | 
			
		||||
  config.vm.box = "debian/contrib-jessie64"
 | 
			
		||||
  config.vm.box = "debian/stretch64"
 | 
			
		||||
 | 
			
		||||
  config.vm.hostname = "gva.local"
 | 
			
		||||
  config.vm.network "private_network", ip: "172.16.3.2"
 | 
			
		||||
  config.vm.network "private_network", ip: "172.16.3.2", lxc__bridge_name: 'vlxcbr1'
 | 
			
		||||
 | 
			
		||||
  config.vm.network "forwarded_port", guest: 443, host: 8443
 | 
			
		||||
  config.vm.network "forwarded_port", guest: 8000, host: 8000
 | 
			
		||||
| 
						 | 
				
			
			@ -14,11 +14,6 @@ Vagrant.configure(2) do |config|
 | 
			
		|||
  config.vm.synced_folder "../gvasalt/states/", "/srv/salt/"
 | 
			
		||||
  config.vm.synced_folder "../gvasalt/pillar/", "/srv/pillar/"
 | 
			
		||||
 | 
			
		||||
  config.vm.provider "virtualbox" do |vb|
 | 
			
		||||
     # vb.gui = true
 | 
			
		||||
     vb.memory = "1024"
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  config.vm.provision :salt do |salt|
 | 
			
		||||
      salt.bootstrap_script = "salt/bootstrap.sh"
 | 
			
		||||
      salt.minion_id = "gva.local"
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,9 +1,7 @@
 | 
			
		|||
#!/bin/sh -
 | 
			
		||||
 | 
			
		||||
echo "deb http://httpredir.debian.org/debian jessie-backports main" >/etc/apt/sources.list.d/backports.list
 | 
			
		||||
 | 
			
		||||
apt-get update
 | 
			
		||||
apt-get install -y -t jessie-backports python-cryptography
 | 
			
		||||
apt-get install -y python-cryptography
 | 
			
		||||
 | 
			
		||||
# We just download the bootstrap script by default and execute that.
 | 
			
		||||
if [ -x /usr/bin/fetch ]; then
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue