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

7 lines
147 B
Plaintext
Raw Normal View History

Vagrant.configure("2") do |config|
2014-05-05 00:36:51 +00:00
config.vm.box = "<%= box_name %>"
<% if box_url -%>
config.vm.box_url = "<%= box_url %>"
<% end -%>
end