Allow multiple VMs to be specified for relevant commands
This commit is contained in:
parent
3338b6c134
commit
ff36845259
|
@ -64,7 +64,7 @@ module Vagrant
|
|||
# @param [String] name The name of the VM. Nil if every VM.
|
||||
# @param [Boolean] single_target If true, then an exception will be
|
||||
# raised if more than one target is found.
|
||||
def with_target_vms(name=nil, options=nil)
|
||||
def with_target_vms(names=nil, options=nil)
|
||||
# Using VMs requires a Vagrant environment to be properly setup
|
||||
raise Errors::NoEnvironmentError if !@env.root_path
|
||||
|
||||
|
@ -73,7 +73,8 @@ module Vagrant
|
|||
|
||||
# First determine the proper array of VMs.
|
||||
vms = []
|
||||
if name
|
||||
if names.length > 0
|
||||
names.each do |name|
|
||||
raise Errors::MultiVMEnvironmentRequired if !@env.multivm?
|
||||
|
||||
if name =~ /^\/(.+?)\/$/
|
||||
|
@ -91,6 +92,7 @@ module Vagrant
|
|||
vms << @env.vms[name.to_sym]
|
||||
raise Errors::VMNotFoundError, :name => name if !vms[0]
|
||||
end
|
||||
end
|
||||
else
|
||||
vms = @env.vms_ordered
|
||||
end
|
||||
|
|
|
@ -20,7 +20,7 @@ module Vagrant
|
|||
return if !argv
|
||||
|
||||
@logger.debug("'Destroy' each target VM...")
|
||||
with_target_vms(argv[0], :reverse => true) do |vm|
|
||||
with_target_vms(argv, :reverse => true) do |vm|
|
||||
if vm.created?
|
||||
# Boolean whether we should actually go through with the destroy
|
||||
# or not. This is true only if the "--force" flag is set or if the
|
||||
|
|
|
@ -21,7 +21,7 @@ module Vagrant
|
|||
return if !argv
|
||||
|
||||
@logger.debug("Halt command: #{argv.inspect} #{options.inspect}")
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
if vm.created?
|
||||
@logger.info("Halting #{vm.name}")
|
||||
vm.halt(:force => options[:force])
|
||||
|
|
|
@ -54,7 +54,7 @@ module Vagrant
|
|||
end
|
||||
|
||||
def package_target(name, options)
|
||||
with_target_vms(name, :single_target => true) do |vm|
|
||||
with_target_vms([ name ], :single_target => true) do |vm|
|
||||
raise Errors::VMNotCreatedError if !vm.created?
|
||||
@logger.debug("Packaging VM: #{vm.name}")
|
||||
package_vm(vm, options)
|
||||
|
|
|
@ -16,7 +16,8 @@ module Vagrant
|
|||
|
||||
# Go over each VM and provision!
|
||||
@logger.debug("'provision' each target VM...")
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
|
||||
if vm.created?
|
||||
if vm.state == :running
|
||||
@logger.info("Provisioning: #{vm.name}")
|
||||
|
|
|
@ -9,6 +9,7 @@ module Vagrant
|
|||
|
||||
def execute
|
||||
options = {}
|
||||
|
||||
opts = OptionParser.new do |opts|
|
||||
opts.banner = "Usage: vagrant reload [vm-name]"
|
||||
opts.separator ""
|
||||
|
@ -20,7 +21,7 @@ module Vagrant
|
|||
return if !argv
|
||||
|
||||
@logger.debug("'reload' each target VM...")
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
if vm.created?
|
||||
@logger.info("Reloading: #{vm.name}")
|
||||
vm.reload(options)
|
||||
|
|
|
@ -15,7 +15,7 @@ module Vagrant
|
|||
return if !argv
|
||||
|
||||
@logger.debug("'resume' each target VM...")
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
if vm.created?
|
||||
@logger.info("Resume: #{vm.name}")
|
||||
vm.resume
|
||||
|
|
|
@ -36,7 +36,7 @@ module Vagrant
|
|||
argv = [] if argv == ssh_args
|
||||
|
||||
# Execute the actual SSH
|
||||
with_target_vms(argv[0], :single_target => true) do |vm|
|
||||
with_target_vms(argv, :single_target => true) do |vm|
|
||||
# Basic checks that are required for proper SSH
|
||||
raise Errors::VMNotCreatedError if !vm.created?
|
||||
raise Errors::VMInaccessible if !vm.state == :inaccessible
|
||||
|
|
|
@ -23,7 +23,7 @@ module Vagrant
|
|||
argv = parse_options(opts)
|
||||
return if !argv
|
||||
|
||||
with_target_vms(argv[0], :single_target => true) do |vm|
|
||||
with_target_vms(argv, :single_target => true) do |vm|
|
||||
raise Errors::VMNotCreatedError if !vm.created?
|
||||
raise Errors::VMInaccessible if !vm.state == :inaccessible
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ module Vagrant
|
|||
|
||||
state = nil
|
||||
results = []
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
state = vm.state.to_s if !state
|
||||
results << "#{vm.name.to_s.ljust(25)}#{vm.state.to_s.gsub("_", " ")}"
|
||||
end
|
||||
|
|
|
@ -15,7 +15,7 @@ module Vagrant
|
|||
return if !argv
|
||||
|
||||
@logger.debug("'suspend' each target VM...")
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
if vm.created?
|
||||
@logger.info("Suspending: #{vm.name}")
|
||||
vm.suspend
|
||||
|
|
|
@ -21,7 +21,7 @@ module Vagrant
|
|||
|
||||
# Go over each VM and bring it up
|
||||
@logger.debug("'Up' each target VM...")
|
||||
with_target_vms(argv[0]) do |vm|
|
||||
with_target_vms(argv) do |vm|
|
||||
if vm.created?
|
||||
@logger.info("Booting: #{vm.name}")
|
||||
vm.ui.info I18n.t("vagrant.commands.up.vm_created")
|
||||
|
|
Loading…
Reference in New Issue