2016-05-27 20:05:50 +00:00
|
|
|
require_relative "../../../../lib/vagrant/action/general/package"
|
2012-08-16 04:04:37 +00:00
|
|
|
|
|
|
|
module VagrantPlugins
|
|
|
|
module ProviderVirtualBox
|
|
|
|
module Action
|
|
|
|
class Package < Vagrant::Action::General::Package
|
|
|
|
# Doing this so that we can test that the parent is properly
|
|
|
|
# called in the unit tests.
|
|
|
|
alias_method :general_call, :call
|
|
|
|
def call(env)
|
|
|
|
general_call(env)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|