2016-10-07 15:31:15 +00:00
|
|
|
require_relative "../../../../lib/vagrant/action/general/package_setup_files"
|
|
|
|
|
2016-05-27 20:05:50 +00:00
|
|
|
module VagrantPlugins
|
|
|
|
module ProviderVirtualBox
|
|
|
|
module Action
|
2016-10-07 15:31:15 +00:00
|
|
|
class PackageSetupFiles < Vagrant::Action::General::PackageSetupFiles
|
|
|
|
# Doing this so that we can test that the parent is properly
|
|
|
|
# called in the unit tests.
|
|
|
|
alias_method :general_call, :call
|
2016-05-27 20:05:50 +00:00
|
|
|
def call(env)
|
2016-10-07 15:31:15 +00:00
|
|
|
general_call(env)
|
2016-05-27 20:05:50 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|