2010-02-22 18:57:19 -08:00

12 lines
208 B
Ruby

module Vagrant
module Actions
module Box
class Add < Base
def prepare
@runner.add_action(Download)
@runner.add_action(Unpackage)
end
end
end
end
end