Class: Vagrant::Command::Halt

Inherits:
Base
  • Object
show all
Defined in:
lib/vagrant/command/halt.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from Vagrant::Command::Base

Instance Method Details

#executeObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/vagrant/command/halt.rb', line 6

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