vagrant/templates/commands/init/Vagrantfile.min.erb

13 lines
321 B
Plaintext
Raw Normal View History

2014-05-05 00:36:51 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
# 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 = "<%= box_name %>"
<% if box_url -%>
config.vm.box_url = "<%= box_url %>"
<% end -%>
end