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 2010/10/14 21:07:35 UTC

svn commit: r1022659 - /incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm

Author: arkurth
Date: Thu Oct 14 19:07:35 2010
New Revision: 1022659

URL: http://svn.apache.org/viewvc?rev=1022659&view=rev
Log:
Added back variable name that was accidentally chopped off in last commit of Linux.pm when indentation was fixed.

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

Modified: incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm
URL: http://svn.apache.org/viewvc/incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm?rev=1022659&r1=1022658&r2=1022659&view=diff
==============================================================================
--- incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm (original)
+++ incubator/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm Thu Oct 14 19:07:35 2010
@@ -2197,7 +2197,7 @@ sub generate_ext_sshd_init {
 	
 	foreach my $l (@ext_sshd_init) {
 		if($l =~ /PID_FILE=/){
-			= "PID_FILE=/var/run/ext_sshd.pid" . "\n" . "OPTIONS=\'-f /etc/ssh/external_sshd_config\'\n";
+			$l = "PID_FILE=/var/run/ext_sshd.pid" . "\n" . "OPTIONS=\'-f /etc/ssh/external_sshd_config\'\n";
 		}	
 		if($l =~ /prog=/){
 			$l="prog=\"ext_sshd\"" . "\n";