Skip to content

Instantly share code, notes, and snippets.

@ewdurbin
Last active December 27, 2015 00:09
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 ewdurbin/1262f05d012f2f909280 to your computer and use it in GitHub Desktop.
Save ewdurbin/1262f05d012f2f909280 to your computer and use it in GitHub Desktop.
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
/tmp/bootstrap_salt.sh git develop -c /tmp
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box_url = "http://puppet-vagrant-boxes.puppetlabs.com/centos-64-x64-vbox4210-nocm.box"
config.vm.box = "centos-min"
config.vm.synced_folder "salt/roots/", "/srv/"
config.vm.provision :salt do |s|
s.verbose = true
s.minion_config = "salt/minion"
s.run_highstate = true
s.bootstrap_options = "git develop"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment