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 2015/01/28 18:47:05 UTC

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

Author: fapeeler
Date: Wed Jan 28 17:47:04 2015
New Revision: 1655406

URL: http://svn.apache.org/r1655406
Log:
VCL-16

correct made in grant_connect_method routine, it was failing if user didn't have the optional public ssh keys.


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=1655406&r1=1655405&r2=1655406&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux.pm Wed Jan 28 17:47:04 2015
@@ -5441,8 +5441,7 @@ sub grant_connect_method_access {
 
 	my $ssh_public_keys = $user_parameters->{ssh_public_keys};
 	if (!defined($ssh_public_keys)) {
-		notify($ERRORS{'WARNING'}, 0, "failed to create user on $computer_node_name, argument hash does not contain a 'ssh_public_keys' key:\n" . format_data($user_parameters));
-		return;
+		notify($ERRORS{'OK'}, 0, "argument hash does not contain a 'ssh_public_keys' key:\n" . format_data($user_parameters));
 	}
 
 	my $home_directory_root = "/home";