Sha256: d196218b6f880e68a706c163067c187322e30fef2ea7b4a05a48944f35b685d6
Contents?: true
Size: 522 Bytes
Versions: 48
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
48 entries across 48 versions & 1 rubygems