Created
December 20, 2013 23:03
-
-
Save promisedlandt/8063053 to your computer and use it in GitHub Desktop.
Vagrantfile to reproduce Vagrant 1.4.1 / Fedora 20 error
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
Vagrant.configure("2") do |config| | |
config.vm.hostname = "fedora-test" | |
config.vm.box = "opscode-fedora-20" | |
config.vm.box_url = "http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_fedora-20_chef-provisionerless.box" | |
config.vm.network :private_network, ip: "33.33.33.200" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment