Class: VagrantPlugins::MultiHostManager::Action::UpdateAll

Inherits:
Object
  • Object
show all
Includes:
HostsFile
Defined in:
lib/vagrant-multihostmanager/action/update_all.rb

Instance Method Summary collapse

Methods included from HostsFile

#update_guest, #update_host

Constructor Details

#initialize(app, env) ⇒ UpdateAll

Returns a new instance of UpdateAll.



9
10
11
12
13
14
15
# File 'lib/vagrant-multihostmanager/action/update_all.rb', line 9

def initialize(app, env)
  @app = app
  @machine = env[:machine]
  @global_env = @machine.env
  @provider = @machine.provider_name
  @logger = Log4r::Logger.new('vagrant::hostmanager::update_all')
end

Instance Method Details

#call(env) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/vagrant-multihostmanager/action/update_all.rb', line 17

def call(env)
  # skip if machine is already active on up action
  return @app.call(env) if @machine.id && env[:machine_action] == :up
  # skip if machine is not active on destroy action
  return @app.call(env) if !@machine.id && env[:machine_action] == :destroy

  # check config to see if the hosts file should be update automatically
  return @app.call(env) unless @global_env.config_global.multihostmanager.enabled?
  @logger.info 'Updating /etc/hosts file automatically'

  @app.call(env)

  # update /etc/hosts file on active machines
  @global_env.active_machines.each do |name, p|
    if p == @provider
      machine = @global_env.machine(name, p)
      update_guest(machine)
    end
  end

  # update /etc/hosts files on host if enabled
  if @machine.config.multihostmanager.manage_host?
    env[:ui].info I18n.t('vagrant_hostmanager.action.update_host')
    update_host
  end
end