Created
April 29, 2013 15:22
-
-
Save mlen/5482304 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# | |
Vagrant.configure("2") do |config| | |
config.vm.box = "precise64" | |
config.vm.provision :chef_solo do |chef| | |
chef.cookbooks_path = ".." | |
chef.add_recipe File.basename(File.dirname(__FILE__)) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment