Author: arkurth
Date: Mon Aug 10 19:57:52 2015
New Revision: 1695160
URL: http://svn.apache.org/r1695160
Log:
VCL-869
Removed $vmtype_name variable from vbox.pm. It was only being used in a notify
message and the corresponding DataStructure.pm value no longer exists.
Modified:
vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vbox.pm
Modified: vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vbox.pm
URL:
http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vbox.pm?rev=1695160&r1=1695159&r2=1695160&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vbox.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/Provisioning/vbox.pm Mon Aug 10
19:57:52 2015
@@ -477,8 +477,7 @@ sub capture { ## This is going to need t
my $computer_nodename = $computer_shortname;
my $computer_hostname = $self->data->get_computer_hostname;
my $computer_type = $self->data->get_computer_type;
-
- my $vmtype_name = $self->data->get_vmhost_type_name;
+
my $vmhost_vmpath = $self->data->get_vmhost_profile_vmpath;
my $vmprofile_vmdisk = $self->data->get_vmhost_profile_vmdisk;
my $vmprofile_datastorepath =
$self->data->get_vmhost_profile_datastore_path;
@@ -497,7 +496,6 @@ sub capture { ## This is going to need t
notify($ERRORS{'OK'}, 0, "$notify_prefix new name: $image_name");
notify($ERRORS{'OK'}, 0, "$notify_prefix computer_name:
$computer_shortname");
notify($ERRORS{'OK'}, 0, "$notify_prefix vmhost_hostname:
$vmhost_hostname");
- notify($ERRORS{'OK'}, 0, "$notify_prefix vmtype_name: $vmtype_name");
my @sshcmd;