You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by fa...@apache.org on 2010/05/04 16:54:50 UTC

svn commit: r940884 - /incubator/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vmware.pm

Author: fapeeler
Date: Tue May  4 14:54:50 2010
New Revision: 940884

URL: http://svn.apache.org/viewvc?rev=940884&view=rev
Log:
VCL-224

removed references to IMAGELIB*, this is being pulled from datastructure.pm


Modified:
    incubator/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vmware.pm

Modified: incubator/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vmware.pm
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vmware.pm?rev=940884&r1=940883&r2=940884&view=diff
==============================================================================
--- incubator/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vmware.pm (original)
+++ incubator/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vmware.pm Tue May  4 14:54:50 2010
@@ -59,31 +59,6 @@ use Fcntl qw(:DEFAULT :flock);
 
 ##############################################################################
 
-=head1 CLASS ATTRIBUTES
-
-=cut
-
-=head2 %VMWARE_CONFIG
-
- Data type   : hash
- Description : %VMWARE_CONFIG is a hash containing the general VMWARE configuration
-               for the management node this code is running on. Since the data is
-					the same for every instance of the VMWARE class, a class attribute
-					is used and the hash is shared among all instances. This also
-					means that the data only needs to be retrieved from the database
-					once.
-
-=cut
-
-#my %VMWARE_CONFIG;
-
-# Class attributes to store VMWWARE configuration details
-# This data also resides in the %VMWARE_CONFIG hash
-# Extract hash data to scalars for ease of use
-my $IMAGE_LIB_ENABLE  = $IMAGELIBENABLE;
-my $IMAGE_LIB_USER    = $IMAGELIBUSER;
-my $IMAGE_LIB_KEY     = $IMAGELIBKEY;
-my $IMAGE_LIB_SERVERS = $IMAGESERVERS;
 
 ##############################################################################