vagrant/plugins/commands/halt/command.rb

40 lines
1015 B
Ruby
Raw Normal View History

2011-12-17 19:14:56 +00:00
require 'optparse'
2012-04-19 20:59:48 +00:00
module VagrantPlugins
module CommandHalt
class Command < Vagrant::Command::Base
2010-08-25 06:10:58 +00:00
def execute
2011-12-17 19:14:56 +00:00
options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: vagrant halt [vm-name] [--force] [-h]"
opts.separator ""
opts.on("-f", "--force", "Force shut down (equivalent of pulling power)") do |f|
options[:force] = f
end
end
# Parse the options
argv = parse_options(opts)
return if !argv
@logger.debug("Halt command: #{argv.inspect} #{options.inspect}")
with_target_vms(argv) do |vm|
2010-08-25 06:10:58 +00:00
if vm.created?
2011-12-17 19:14:56 +00:00
@logger.info("Halting #{vm.name}")
vm.halt(:force => options[:force])
2010-08-25 06:10:58 +00:00
else
2011-12-17 19:14:56 +00:00
@logger.info("Not halting #{vm.name}, since not created.")
vm.ui.info I18n.t("vagrant.commands.common.vm_not_created")
2010-08-25 06:10:58 +00:00
end
end
# Success, exit status 0
0
end
2010-08-25 06:10:58 +00:00
end
end
end