# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure(2) do |config| config.vm.box = "ubuntu/trusty64" # vagrant uses this name in its output config.vm.define "trusty64-salt" config.vm.provider "virtualbox" do |v| # the name in the Virtualbox GUI v.name = "trusty64-salt" v.memory = 2048 v.cpus = 4 end # installs salt config.vm.provision :salt do |salt| salt.run_highstate = false end # leave the official insecure key be - we want a base image # see http://docs.vagrantup.com/v2/boxes/base.html config.ssh.insert_key = false end