From 897e48d09fcea13f17a99d18e261f5abe0081455 Mon Sep 17 00:00:00 2001 From: Rupak Ganguly Date: Mon, 30 Jan 2012 15:14:46 -0500 Subject: [PATCH] Add cores as an attribute to alias vcpus. --- lib/fog/hp/models/compute/flavor.rb | 22 +--------------------- 1 file changed, 1 insertion(+), 21 deletions(-) diff --git a/lib/fog/hp/models/compute/flavor.rb b/lib/fog/hp/models/compute/flavor.rb index e4ba8d730..ebf47f79d 100644 --- a/lib/fog/hp/models/compute/flavor.rb +++ b/lib/fog/hp/models/compute/flavor.rb @@ -11,32 +11,12 @@ module Fog attribute :disk attribute :name attribute :ram - attribute :vcpus + attribute :cores, :aliases => 'vcpus' #def bits # 64 #end - #def cores - # # 2 quad-cores >= 2Ghz = 8 cores - # 8 * case ram - # when 256 - # 1/64.0 - # when 512 - # 1/32.0 - # when 1024 - # 1/16.0 - # when 2048 - # 1/8.0 - # when 4096 - # 1/4.0 - # when 8192 - # 1/2.0 - # when 15872 - # 1 - # end - #end - end end