You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by ar...@apache.org on 2012/01/19 21:25:16 UTC

svn commit: r1233559 - /incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm

Author: arkurth
Date: Thu Jan 19 20:25:15 2012
New Revision: 1233559

URL: http://svn.apache.org/viewvc?rev=1233559&view=rev
Log:
Increased the timeouts in Version_6.pm::run_sysprep. I have seen the current values reached while Sysprep was still running causing an image capture to fail unnecessarily.

Modified:
    incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm

Modified: incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm?rev=1233559&r1=1233558&r2=1233559&view=diff
==============================================================================
--- incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm (original)
+++ incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Windows/Version_6.pm Thu Jan 19 20:25:15 2012
@@ -1896,15 +1896,15 @@ EOF
 		return 0;
 	}
 	
-	# Wait maximum of 12 minutes for the computer to become unresponsive
-	if (!$self->wait_for_no_ping(720)) {
+	# Wait maximum of 30 minutes for the computer to become unresponsive
+	if (!$self->wait_for_no_ping(1800)) {
 		# Computer never stopped responding to ping
 		notify($ERRORS{'WARNING'}, 0, "$computer_node_name never became unresponsive to ping");
 		return;
 	}
 	
-	# Wait maximum of 10 minutes for computer to power off
-	my $power_off = $self->provisioner->wait_for_power_off(600);
+	# Wait maximum of 15 minutes for computer to power off
+	my $power_off = $self->provisioner->wait_for_power_off(900);
 	if (!defined($power_off)) {
 		# wait_for_power_off result will be undefined if the provisioning module doesn't implement a power_status subroutine
 		notify($ERRORS{'OK'}, 0, "unable to determine power status of $computer_node_name from provisioning module, sleeping 5 minutes to allow computer time to shutdown");