Skip to content

Instantly share code, notes, and snippets.

@keimlink
Created March 31, 2015 15:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keimlink/e6d16d6a462c2cb4eab8 to your computer and use it in GitHub Desktop.
Save keimlink/e6d16d6a462c2cb4eab8 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "chef/debian-7.8"
# Port forwarding for http server.
config.vm.network "forwarded_port", guest: 80, host: 8000,
auto_correct: true
# Salt provisioning.
config.vm.synced_folder "salt/roots/", "/srv/"
config.vm.provision :salt do |salt|
salt.minion_config = "salt/minion"
salt.run_highstate = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment