2013-02-03 02:42:04 +00:00
|
|
|
require 'optparse'
|
|
|
|
|
2013-02-03 07:38:44 +00:00
|
|
|
require_relative "base"
|
2013-09-02 16:31:26 +00:00
|
|
|
require_relative "mixin_install_opts"
|
2013-02-03 07:38:44 +00:00
|
|
|
|
2013-02-03 02:42:04 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module CommandPlugin
|
|
|
|
module Command
|
2013-02-03 07:38:44 +00:00
|
|
|
class Install < Base
|
2013-09-02 16:31:26 +00:00
|
|
|
include MixinInstallOpts
|
|
|
|
|
2013-02-03 02:42:04 +00:00
|
|
|
def execute
|
2014-01-06 17:27:37 +00:00
|
|
|
options = { verbose: false }
|
2013-02-03 21:59:43 +00:00
|
|
|
|
2013-02-03 02:42:04 +00:00
|
|
|
opts = OptionParser.new do |o|
|
2014-01-07 22:17:48 +00:00
|
|
|
o.banner = "Usage: vagrant plugin install <name>... [-h]"
|
2013-02-03 21:59:43 +00:00
|
|
|
o.separator ""
|
2013-09-02 16:31:26 +00:00
|
|
|
build_install_opts(o, options)
|
2014-01-06 17:27:37 +00:00
|
|
|
|
|
|
|
o.on("--verbose", "Enable verbose output for plugin installation") do |v|
|
|
|
|
options[:verbose] = v
|
|
|
|
end
|
2013-02-03 02:42:04 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Parse the options
|
|
|
|
argv = parse_options(opts)
|
|
|
|
return if !argv
|
|
|
|
raise Vagrant::Errors::CLIInvalidUsage, :help => opts.help.chomp if argv.length < 1
|
|
|
|
|
|
|
|
# Install the gem
|
2014-01-07 22:17:48 +00:00
|
|
|
argv.each do |name|
|
|
|
|
action(Action.action_install, {
|
|
|
|
:plugin_entry_point => options[:entry_point],
|
|
|
|
:plugin_version => options[:plugin_version],
|
|
|
|
:plugin_sources => options[:plugin_sources],
|
|
|
|
:plugin_name => name,
|
|
|
|
:plugin_verbose => options[:verbose]
|
|
|
|
})
|
|
|
|
end
|
2013-02-03 02:42:04 +00:00
|
|
|
|
|
|
|
# Success, exit status 0
|
|
|
|
0
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|