vagrant/plugins/commands/init/command.rb

81 lines
2.3 KiB
Ruby
Raw Normal View History

require 'optparse'
require 'vagrant/util/template_renderer'
2012-04-19 20:59:48 +00:00
module VagrantPlugins
module CommandInit
2012-11-07 05:05:14 +00:00
class Command < Vagrant.plugin("2", :command)
def self.synopsis
"initializes a new Vagrant environment by creating a Vagrantfile"
end
def execute
2014-04-29 03:22:09 +00:00
options = {
force: false,
2014-05-05 00:36:51 +00:00
minimal: false,
2014-04-29 03:22:09 +00:00
output: "Vagrantfile",
}
opts = OptionParser.new do |o|
2014-05-24 19:38:24 +00:00
o.banner = "Usage: vagrant init [options] [name [url]]"
2014-02-08 08:20:50 +00:00
o.separator ""
o.separator "Options:"
o.separator ""
2014-04-29 03:22:09 +00:00
o.on("-f", "--force", "Overwrite existing Vagrantfile") do |f|
options[:force] = f
end
2014-05-05 00:36:51 +00:00
o.on("-m", "--minimal", "Create minimal Vagrantfile (no help comments)") do |m|
options[:minimal] = m
end
2014-02-08 08:20:50 +00:00
o.on("--output FILE", String,
"Output path for the box. '-' for stdout") do |output|
options[:output] = output
end
end
# Parse the options
argv = parse_options(opts)
return if !argv
save_path = nil
if options[:output] != "-"
save_path = Pathname.new(options[:output]).expand_path(@env.cwd)
save_path.delete if save_path.exist? && options[:force]
raise Vagrant::Errors::VagrantfileExistsError if save_path.exist?
end
2014-05-05 00:36:51 +00:00
template = "templates/commands/init/Vagrantfile"
if options[:minimal]
template = "templates/commands/init/Vagrantfile.min"
end
template_path = ::Vagrant.source_root.join(template)
contents = Vagrant::Util::TemplateRenderer.render(template_path,
box_name: argv[0] || "base",
box_url: argv[1])
if save_path
# Write out the contents
begin
save_path.open("w+") do |f|
f.write(contents)
end
rescue Errno::EACCES
raise Vagrant::Errors::VagrantfileWriteError
end
@env.ui.info(I18n.t("vagrant.commands.init.success"), prefix: false)
else
@env.ui.info(contents, prefix: false)
end
# Success, exit status 0
0
end
end
end
end