I posted this in Salt Users group, but figured there might be others (new users, etc) interested in this from Vagrant as well. I found some workarounds for these two issues that seem to work. I haven't tested these out in other distros/versions.
*Issues*: - https://github.com/mitchellh/vagrant/issues/6029 - https://github.com/mitchellh/vagrant/issues/6103 *Solution*: For *Debian Wheezy* and *Cent OS 6.6*, I had to append -F -c /tmp, so my Vagrantfile looked liked this: config.vm.synced_folder "../../provisioning/salt", "/srv/salt/" # Provision System config.vm.provision :salt do |salt| salt.run_highstate = true salt.minion_config = "../../provisioning/minion" salt.bootstrap_options = "-F -c /tmp" # Vagrant Issue #6011 salt.verbose = true end For *Ubuntu Precise 12.04*, I add to add an -P, as pip is used to install Tornado 4.0+: config.vm.synced_folder "../../provisioning/salt", "/srv/salt/" # Provision System config.vm.provision :salt do |salt| salt.run_highstate = true salt.minion_config = "../../provisioning/minion" salt.bootstrap_options = "-F -c /tmp -P" # Vagrant Issues #6011 & #6029 salt.verbose = true end end -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/8e465d20-dd37-4577-ae75-fb0dab23985d%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
