vaguerent/lib/vagrant/action/builtin/handle_box_url.rb
2014-02-05 21:19:52 -08:00

15 lines
405 B
Ruby

module Vagrant
module Action
module Builtin
class HandleBoxUrl < HandleBox
def call(env)
env[:ui].warn("HandleBoxUrl middleware is deprecated. Use HandleBox instead.")
env[:ui].warn("This is a bug with the provider. Please contact the creator")
env[:ui].warn("of the provider you use to fix this.")
super
end
end
end
end
end