Author: fapeeler
Date: Thu Apr 5 18:04:20 2012
New Revision: 1309981
URL: http://svn.apache.org/viewvc?rev=1309981&view=rev
Log:
small fix in echo command for is_ssh_responding routine
Modified:
incubator/vcl/trunk/managementnode/lib/VCL/Module/OS.pm
Modified: incubator/vcl/trunk/managementnode/lib/VCL/Module/OS.pm
URL:
http://svn.apache.org/viewvc/incubator/vcl/trunk/managementnode/lib/VCL/Module/OS.pm?rev=1309981&r1=1309980&r2=1309981&view=diff
==============================================================================
--- incubator/vcl/trunk/managementnode/lib/VCL/Module/OS.pm (original)
+++ incubator/vcl/trunk/managementnode/lib/VCL/Module/OS.pm Thu Apr 5 18:04:20
2012
@@ -620,7 +620,7 @@ sub is_ssh_responding {
# Run a test SSH command
my ($exit_status, $output) = run_ssh_command({
node => $computer_node_name,
- command => "echo testing ssh on $computer_node_name",
+ command => "echo \"testing ssh on
$computer_node_name\"",
max_attempts => $max_attempts,
output_level => 0,
timeout_seconds => 30,