2012-04-19 20:59:48 +00:00
|
|
|
require 'optparse'
|
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module CommandBox
|
|
|
|
module Command
|
2012-06-26 23:18:02 +00:00
|
|
|
class Add < Vagrant.plugin("1", :command)
|
2012-04-19 20:59:48 +00:00
|
|
|
def execute
|
|
|
|
options = {}
|
|
|
|
|
|
|
|
opts = OptionParser.new do |opts|
|
|
|
|
opts.banner = "Usage: vagrant box add <name> <url>"
|
|
|
|
opts.separator ""
|
|
|
|
|
|
|
|
opts.on("-f", "--force", "Overwrite an existing box if it exists.") do |f|
|
|
|
|
options[:force] = f
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Parse the options
|
|
|
|
argv = parse_options(opts)
|
|
|
|
return if !argv
|
|
|
|
raise Vagrant::Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 2
|
|
|
|
|
|
|
|
# If we're force adding, then be sure to destroy any existing box if it
|
|
|
|
# exists.
|
|
|
|
if options[:force]
|
2012-07-10 03:09:54 +00:00
|
|
|
existing = @env.boxes.find(argv[0], :virtualbox)
|
|
|
|
existing.destroy! if existing
|
2012-04-19 20:59:48 +00:00
|
|
|
end
|
|
|
|
|
2012-07-10 03:09:54 +00:00
|
|
|
# Invoke the "box_add" middleware sequence.
|
|
|
|
@env.action_runner.run(:box_add, {
|
|
|
|
:box_name => argv[0],
|
|
|
|
:box_provider => :virtualbox,
|
|
|
|
:box_url => argv[1]
|
|
|
|
})
|
2012-04-19 20:59:48 +00:00
|
|
|
|
|
|
|
# Success, exit status 0
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|