Sha256: e2997bd2a524f7bdd2c7a23587141ae2ce112cebf3b9cb1604123a9a203ff485
Contents?: true
Size: 522 Bytes
Versions: 33
Compression:
Stored size: 522 Bytes
Contents
require 'log4r' module VagrantPlugins module Parallels module Action class DestroyUnusedNetworkInterfaces def initialize(app, env) @app = app end def call(env) if env[:machine].provider_config.destroy_unused_network_interfaces env[:ui].info I18n.t('vagrant.actions.vm.destroy_network.destroying') env[:machine].provider.driver.delete_unused_host_only_networks end @app.call(env) end end end end end
Version data entries
33 entries across 33 versions & 1 rubygems