Sha256: 38aa0ec80110fe96129ea8a2e8f2700a0cddbc229024847e13bf0fa6b94e0707
Contents?: true
Size: 1.14 KB
Versions: 1
Compression:
Stored size: 1.14 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 end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vagrant-auto_network-1.0.2 | lib/auto_network/plugin.rb |