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

10 lines
187 B
Plaintext

# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "<%= box_name %>"
<% if box_url -%>
config.vm.box_url = "<%= box_url %>"
<% end -%>
end