Now we have different providers, but the error message didn't tell
anything about it. Suppose I want to remove one of my boxes:
vagrant box remove opscode-ubuntu-12.04 vritualbox
There is a typo in provider name. The error message is:
Box 'opscode-ubuntu-12.04' could not be found.
Therefore I need to double check the box name, and only than I will see
the typo.
This commit make the error message looks like this:
Box 'opscode-ubuntu-12.04' with 'vritualbox' provider could not be
found.
44 lines
1.2 KiB
Ruby
44 lines
1.2 KiB
Ruby
require "fileutils"
|
|
require 'optparse'
|
|
require "pathname"
|
|
|
|
module VagrantPlugins
|
|
module CommandBox
|
|
module Command
|
|
class Repackage < Vagrant.plugin("2", :command)
|
|
def execute
|
|
opts = OptionParser.new do |o|
|
|
o.banner = "Usage: vagrant box repackage <name> <provider>"
|
|
end
|
|
|
|
# Parse the options
|
|
argv = parse_options(opts)
|
|
return if !argv
|
|
raise Vagrant::Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 2
|
|
|
|
box_name = argv[0]
|
|
box_provider = argv[1].to_sym
|
|
|
|
# Verify the box exists that we want to repackage
|
|
box = nil
|
|
begin
|
|
box = @env.boxes.find(box_name, box_provider)
|
|
rescue Vagrant::Errors::BoxUpgradeRequired
|
|
@env.boxes.upgrade(box_name)
|
|
retry
|
|
end
|
|
|
|
raise Vagrant::Errors::BoxNotFound, :name => box_name, :provider => box_provider if !box
|
|
|
|
# Repackage the box
|
|
output_path = Pathname.new(File.expand_path(@env.config_global.package.name, FileUtils.pwd))
|
|
box.repackage(output_path)
|
|
|
|
# Success, exit status 0
|
|
0
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|