From a9223cf443ca391e18dba06cc14f944e956aa286 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Wed, 4 Apr 2018 16:25:40 -0700 Subject: [PATCH] Add missing action autoloads Fixes #9303 --- lib/vagrant/action.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/vagrant/action.rb b/lib/vagrant/action.rb index 91b7959c1..4b37c69f1 100644 --- a/lib/vagrant/action.rb +++ b/lib/vagrant/action.rb @@ -36,7 +36,9 @@ module Vagrant end module General - autoload :Package, 'vagrant/action/general/package' + autoload :Package, 'vagrant/action/general/package' + autoload :PackageSetupFiles, 'vagrant/action/general/package_setup_files' + autoload :PackageSetupFolders, 'vagrant/action/general/package_setup_folders' end # This is the action that will add a box from a URL. This middleware