--- /dev/null
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+# All Vagrant configuration is done below. The "2" in Vagrant.configure
+# configures the configuration version (we support older styles for
+# backwards compatibility). Please don't change it unless you know what
+# you're doing.
+Vagrant.configure(2) do |config|
+ config.vm.box = "debian/jessie64"
+ config.vm.network "private_network", ip: "192.168.33.10"
+ config.vm.synced_folder "salt/", "/srv/salt"
+
+ config.vm.provision :salt do |salt|
+ salt.minion_config = "saltconfig"
+ salt.install_type = "stable"
+ #salt.run_highstate = true
+ salt.masterless = true
+ salt.verbose = true
+ salt.colorize = true
+ # https://github.com/mitchellh/vagrant/issues/5973#issuecomment-137276605
+ salt.bootstrap_options = "-F -c /tmp/ -P"
+ end
+end