From 78d79de5c4d74c3cf81dc3c74869e13f7710c594 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 18 Aug 2012 16:19:13 -0700 Subject: [PATCH] Comment the action_box_add method --- lib/vagrant/action.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/vagrant/action.rb b/lib/vagrant/action.rb index a29e8b893..0df155d44 100644 --- a/lib/vagrant/action.rb +++ b/lib/vagrant/action.rb @@ -22,6 +22,11 @@ module Vagrant autoload :Validate, 'vagrant/action/general/validate' 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 Builder.new.tap do |b| b.use Builtin::BoxAdd