require 'optparse' module VagrantPlugins module CommandBox module Command class Add < Vagrant.plugin("2", :command) def execute options = {} opts = OptionParser.new do |o| o.banner = "Usage: vagrant box add [--provider provider] [-h]" o.separator "" o.on("--checksum VALUE", String, "Checksum") do |c| options[:checksum] = c end o.on("--checksum-type VALUE", String, "Checksum type") do |c| options[:checksum_type] = c.to_sym end o.on("-c", "--clean", "Remove old temporary download if it exists.") do |c| options[:clean] = c end o.on("-f", "--force", "Overwrite an existing box if it exists.") do |f| options[:force] = f end o.on("--insecure", "If set, SSL certs will not be validated.") do |i| options[:insecure] = i end o.on("--cacert certfile", String, "CA certificate") do |c| options[:ca_cert] = c end o.on("--cert certfile", String, "The client SSL cert") do |c| options[:client_cert] = c end o.on("--provider provider", String, "The provider that backs the box.") do |p| options[:provider] = p end end # Parse the options argv = parse_options(opts) return if !argv raise Vagrant::Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 2 # Get the provider if one was set provider = nil provider = options[:provider].to_sym if options[:provider] @env.action_runner.run(Vagrant::Action.action_box_add, { :box_name => argv[0], :box_provider => provider, :box_url => argv[1], :box_checksum_type => options[:checksum_type], :box_checksum => options[:checksum], :box_clean => options[:clean], :box_force => options[:force], :box_download_ca_cert => options[:ca_cert], :box_download_client_cert => options[:client_cert], :box_download_insecure => options[:insecure], }) # Success, exit status 0 0 end end end end end