Mitchell Hashimoto bdc39aa2e0 Suspend command
2011-12-17 12:04:35 -08:00

31 lines
722 B
Ruby

require 'optparse'
module Vagrant
module Command
class Suspend < Base
def execute
options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: vagrant suspend [vm-name]"
end
# Parse the options
argv = parse_options(opts)
return if !argv
@logger.debug("'suspend' each target VM...")
with_target_vms(argv[0]) do |vm|
if vm.created?
@logger.info("Suspending: #{vm.name}")
vm.suspend
else
@logger.info("Not created: #{vm.name}. Not suspending.")
vm.ui.info I18n.t("vagrant.commands.common.vm_not_created")
end
end
end
end
end
end