Sha256: 7799a28c4539e0adfd7641cf34768c73d540e6e07e5036973b7f9bf0c5a38bfb
Contents?: true
Size: 367 Bytes
Versions: 34
Compression:
Stored size: 367 Bytes
Contents
module VagrantPlugins module AWS 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_aws.warn_networks")) end @app.call(env) end end end end end
Version data entries
34 entries across 34 versions & 9 rubygems