Class: Vagrant::Command::Reload

Inherits:
Base
  • Object
show all
Includes:
StartMixins
Defined in:
lib/vagrant/command/reload.rb

Instance Method Summary collapse

Methods included from StartMixins

#build_start_options

Methods inherited from Base

#initialize

Methods included from Util::SafePuts

#safe_puts

Constructor Details

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

Instance Method Details

#executeObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/vagrant/command/reload.rb', line 10

def execute
 options = {}

   opts = OptionParser.new do |opts|
   opts.banner = "Usage: vagrant reload [vm-name]"
   opts.separator ""
   build_start_options(opts, options)
 end

 # Parse the options
 argv = parse_options(opts)
 return if !argv

 @logger.debug("'reload' each target VM...")
 with_target_vms(argv) do |vm|
   if vm.created?
     @logger.info("Reloading: #{vm.name}")
     vm.reload(options)
   else
     @logger.info("Not created: #{vm.name}. Not reloading.")
     vm.ui.info I18n.t("vagrant.commands.common.vm_not_created")
   end
 end

 # Success, exit status 0
 0
end