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

10 lines
187 B
Plaintext
Raw Normal View History

2014-05-05 00:36:51 +00:00
# -*- mode: ruby -*-
# vi: set ft=ruby :
2014-10-08 20:01:20 +00:00
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