Sha256: 07df657dd7266f82842a4a7d484f92828da747286f615660196b4a89dfad7008
Contents?: true
Size: 1.15 KB
Versions: 4
Compression:
Stored size: 1.15 KB
Contents
require 'vagrant' require 'auto_network/action' module AutoNetwork class Plugin < Vagrant.plugin('2') name 'auto_network' description <<-DESC This plugin adds support for automatically configuring Vagrant hostonly networks. DESC action_hook('Auto network: filter private networks', :environment_load) do |hook| load_pool = AutoNetwork::Action::LoadPool # TODO: This should be re-factored to use ActionBuilder. hook.prepend(load_pool) hook.after(load_pool, AutoNetwork::Action::FilterNetworks) end action_hook('Auto network: request address') do |hook| action = Vagrant::Action::Builtin::ConfigValidate hook.before(action, AutoNetwork::Action::Request) end action_hook('Auto network: release address', :machine_action_destroy) do |hook| # This is redundant, but the VirtualBox Destroy Action flushes UUID # values. So we double the hook here as it is our only chance to clean # old-style IDs out of the cache. hook.before(VagrantPlugins::ProviderVirtualBox::Action::Destroy, AutoNetwork::Action::Release) hook.append(AutoNetwork::Action::Release) end end end
Version data entries
4 entries across 4 versions & 1 rubygems