mirror of
				https://github.com/mail-in-a-box/mailinabox.git
				synced 2025-11-03 19:30:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			313 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
# -*- mode: ruby -*-
 | 
						|
# vi: set ft=ruby :
 | 
						|
 | 
						|
Vagrant.configure("2") do |config|
 | 
						|
  config.vm.box = "ubuntu14.04"
 | 
						|
  config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box"
 | 
						|
 | 
						|
  config.vm.provision :shell, :inline => <<-SH
 | 
						|
    sudo apt-get update
 | 
						|
SH
 | 
						|
end
 |