Comment the action_box_add method
This commit is contained in:
parent
47fe278667
commit
78d79de5c4
|
@ -22,6 +22,11 @@ module Vagrant
|
||||||
autoload :Validate, 'vagrant/action/general/validate'
|
autoload :Validate, 'vagrant/action/general/validate'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# This is the action that will add a box from a URL. This middleware
|
||||||
|
# sequence is built-in to Vagrant. Plugins can hook into this like any
|
||||||
|
# other middleware sequence. This is particularly useful for provider
|
||||||
|
# plugins, which can hook in to do things like verification of boxes
|
||||||
|
# that are downloaded.
|
||||||
def self.action_box_add
|
def self.action_box_add
|
||||||
Builder.new.tap do |b|
|
Builder.new.tap do |b|
|
||||||
b.use Builtin::BoxAdd
|
b.use Builtin::BoxAdd
|
||||||
|
|
Loading…
Reference in New Issue