From b002a1c10edee2b57515d3d0bc4d3ecaa3456d8c Mon Sep 17 00:00:00 2001 From: "Mark A. Miller" Date: Sun, 14 Aug 2011 09:20:26 -0500 Subject: [PATCH] * Fix VirtualBox in compute case statement VirtualBox was not able to be called as a service otherwise. --- lib/fog/compute.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fog/compute.rb b/lib/fog/compute.rb index aa985b7b5..8235e44fe 100644 --- a/lib/fog/compute.rb +++ b/lib/fog/compute.rb @@ -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