1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

* Fix VirtualBox in compute case statement

VirtualBox was not able to be called as a service otherwise.
This commit is contained in:
Mark A. Miller 2011-08-14 09:20:26 -05:00
parent f3e2c939f4
commit b002a1c10e

View file

@ -44,7 +44,7 @@ module Fog
when :vcloud
require 'fog/compute/vcloud'
Fog::Vcloud::Compute.new(attributes)
when 'VirtualBox'
when :virtualbox
require 'fog/compute/virtual_box'
Fog::Compute::VirtualBox.new(attributes)
when :voxel