vagrant-lxc-ng/lib/vagrant-lxc/action/warn_networks.rb
2013-11-06 21:21:16 -02:00

26 lines
587 B
Ruby

module Vagrant
module LXC
module Action
class WarnNetworks
def initialize(app, env)
@app = app
end
def call(env)
if public_or_private_network_configured?(env[:machine].config)
env[:ui].warn(I18n.t("vagrant_lxc.messages.warn_networks"))
end
@app.call(env)
end
def public_or_private_network_configured?(config)
config.vm.networks.find do |type, _|
[:private_network, :public_network].include?(type.to_sym)
end
end
end
end
end
end