Skip to content

Instantly share code, notes, and snippets.

@fuzzy31u
Last active August 29, 2015 14:00
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save fuzzy31u/4912a6c0e9710c491944 to your computer and use it in GitHub Desktop.
VagrantFile for Fabric integration
# 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 = "centos64"
config.vm.provision :fabric do |fabric|
fabric.fabfile_path = "./provision.py"
fabric.tasks = ["execute"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment