Sha256: 577dcf388c3cfeb564c1f6c9c70dfda3b9125e963f480f1cc41077819f867977
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 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| pool_loader = Vagrant::Action::Builder.new.tap do |b| b.use AutoNetwork::Action::LoadPool b.use AutoNetwork::Action::FilterNetworks end hook.prepend(pool_loader) 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 # Internal action hooks action_hook('Vagrant AutoNetwork: vagrant version check', :environment_load) do |hook| hook.prepend(::AutoNetwork::Action::VersionCheck) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-auto_network-1.0.3 | lib/auto_network/plugin.rb |