# File lib/vagrant-hostmanager/provisioner.rb, line 7 def initialize(machine, config) super(machine, config) global_env = machine.env @config = Util.get_config(global_env) @updater = HostsFile::Updater.new(global_env, machine.provider_name) end
# File lib/vagrant-hostmanager/provisioner.rb, line 14 def provision @updater.update_guest(@machine) if @config.hostmanager.manage_host? @updater.update_host end end