Author: fapeeler
Date: Thu Aug 23 20:03:59 2012
New Revision: 1376670
URL: http://svn.apache.org/viewvc?rev=1376670&view=rev
Log:
VCL-622
removed routine call, replaced with return 0;
Modified:
vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Linux.pm
vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Windows.pm
Modified:
vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Linux.pm
URL:
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Linux.pm?rev=1376670&r1=1376669&r2=1376670&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Linux.pm
(original)
+++ vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Linux.pm Thu
Aug 23 20:03:59 2012
@@ -243,7 +243,8 @@ sub post_load {
}
if (!$self->update_public_ip_address()) {
- $self->reservation_failed("failed to update public IP address");
+ notify($ERRORS{'WARNING'}, 0, "failed to update IP address for
$computer_node_name");
+ return 0;
}
if ($image_os_install_type eq "kickstart"){
Modified:
vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Windows.pm
URL:
http://svn.apache.org/viewvc/vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Windows.pm?rev=1376670&r1=1376669&r2=1376670&view=diff
==============================================================================
--- vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Windows.pm
(original)
+++ vcl/branches/vcl-2.3-bugfixes/managementnode/lib/VCL/Module/OS/Windows.pm
Thu Aug 23 20:03:59 2012
@@ -689,7 +689,8 @@ sub post_load {
=cut
if (!$self->update_public_ip_address()) {
- $self->reservation_failed("failed to update public IP address");
+ notify($ERRORS{'WARNING'}, 0, "failed to update IP address for
$computer_node_name");
+ return 0;
}
=item *