Sha256: 64d3ba9d717bbacbfc49da6a60d49debecbf83ce138ebd4d72f01b868db104a5
Contents?: true
Size: 941 Bytes
Versions: 21
Compression:
Stored size: 941 Bytes
Contents
require 'optparse' module Vagrant module Command class Halt < Base def execute 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[0]) do |vm| if vm.created? @logger.info("Halting #{vm.name}") vm.halt(:force => options[:force]) else @logger.info("Not halting #{vm.name}, since not created.") vm.ui.info I18n.t("vagrant.commands.common.vm_not_created") end end end end end end
Version data entries
21 entries across 21 versions & 2 rubygems