module VagrantPlugins::HostManager::Action

Public Class Methods

update_all() click to toggle source
# File lib/vagrant-hostmanager/action.rb, line 10
def self.update_all
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use ConfigValidate
    builder.use UpdateAll
  end
end
update_guest() click to toggle source
# File lib/vagrant-hostmanager/action.rb, line 17
def self.update_guest
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use ConfigValidate
    builder.use UpdateGuest
  end
end
update_host() click to toggle source
# File lib/vagrant-hostmanager/action.rb, line 24
def self.update_host
  Vagrant::Action::Builder.new.tap do |builder|
    builder.use UpdateHost
  end
end