Sha256: c0106e9b6cd21b98e99fa0054da2bc97b2732febf61cf9dcfac1f0e9704f7ef3
Contents?: true
Size: 367 Bytes
Versions: 85
Compression:
Stored size: 367 Bytes
Contents
module VagrantPlugins module MOS module Action class WarnNetworks def initialize(app, env) @app = app end def call(env) if env[:machine].config.vm.networks.length > 0 env[:ui].warn(I18n.t("vagrant_mos.warn_networks")) end @app.call(env) end end end end end
Version data entries
85 entries across 85 versions & 1 rubygems