You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by fa...@apache.org on 2013/05/23 19:50:00 UTC

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

Author: fapeeler
Date: Thu May 23 17:50:00 2013
New Revision: 1485787

URL: http://svn.apache.org/r1485787
Log:
VCL-692

removed adding extra space to AllowUsers directive, causing some issues with peoples post_reserve script


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

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm?rev=1485787&r1=1485786&r2=1485787&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm Thu May 23 17:50:00 2013
@@ -1011,7 +1011,7 @@ sub reserve {
 	} 
 	
 	# Append AllowUsers line to the end of the file
-	if (!$self->append_text_file('/etc/ssh/external_sshd_config', "AllowUsers \n")) {
+	if (!$self->append_text_file('/etc/ssh/external_sshd_config', "AllowUsers\n")) {
 		notify($ERRORS{'WARNING'}, 0, "Error in appending AllowUsers directive to external_sshd_config");
 	}