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 2017/06/06 16:48:00 UTC

svn commit: r1797808 - in /vcl/trunk/managementnode/lib/VCL: Module/OS/Linux/ManagementNode.pm utils.pm

Author: arkurth
Date: Tue Jun  6 16:48:00 2017
New Revision: 1797808

URL: http://svn.apache.org/viewvc?rev=1797808&view=rev
Log:
VCL-1045
Renamed utils.pm::update_reservation_cryptsecret to call_check_crypt_secrets and updated API call to XMLRPCcheckCryptSecrets.

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

Modified: vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm?rev=1797808&r1=1797807&r2=1797808&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/Module/OS/Linux/ManagementNode.pm Tue Jun  6 16:48:00 2017
@@ -896,7 +896,7 @@ sub generate_private_key_file {
 	}
 	
 	# Call the XML-RPC API to create a new cryptsecret entry for this reservation
-	update_reservation_cryptsecret($reservation_id);
+	call_check_crypt_secrets($reservation_id);
 	
 	notify($ERRORS{'OK'}, 0, "created private key file on management node $management_node_short_name: $private_key_file_path, updated cryptkey.pubkey value in database");
 	return 1;

Modified: vcl/trunk/managementnode/lib/VCL/utils.pm
URL: http://svn.apache.org/viewvc/vcl/trunk/managementnode/lib/VCL/utils.pm?rev=1797808&r1=1797807&r2=1797808&view=diff
==============================================================================
--- vcl/trunk/managementnode/lib/VCL/utils.pm (original)
+++ vcl/trunk/managementnode/lib/VCL/utils.pm Tue Jun  6 16:48:00 2017
@@ -94,6 +94,7 @@ our @EXPORT = qw(
 	_pingnode
 	add_imageid_to_newimages
 	add_reservation_account
+	call_check_crypt_secrets
 	character_to_ascii_value
 	check_blockrequest_time
 	check_endtimenotice_interval
@@ -293,7 +294,6 @@ our @EXPORT = qw(
 	update_preload_flag
 	update_request_checkuser
 	update_request_state
-	update_reservation_cryptsecret
 	update_reservation_lastcheck
 	update_reservation_natlog
 	update_reservation_password
@@ -15152,23 +15152,23 @@ EOF
 
 #//////////////////////////////////////////////////////////////////////////////
 
-=head2 update_reservation_cryptsecret
+=head2 call_check_crypt_secrets
 
  Parameters  : none
  Returns     : boolean
- Description : Calls the XML-RPC XMLRPCupdateSecrets function to update the
-               cryptsecret table for the reservation.
+ Description : Calls XMLRPCcheckCryptSecrets function to update the cryptsecret
+               table for the reservation.
 
 =cut
 
-sub update_reservation_cryptsecret {
+sub call_check_crypt_secrets {
 	my $reservation_id = shift;
 	if (!defined($reservation_id)) {
 		notify($ERRORS{'WARNING'}, 0, "reservation ID argument was not supplied");
 		return;
 	}
 	
-	my $xmlrpc_function = 'XMLRPCupdateSecrets';
+	my $xmlrpc_function = 'XMLRPCcheckCryptSecrets';
 	my @xmlrpc_arguments = (
 		$xmlrpc_function,
 		$reservation_id
@@ -15180,10 +15180,10 @@ sub update_reservation_cryptsecret {
 		return;
 	}
 	elsif ($response->value->{status} =~ /success/) {
-		notify($ERRORS{'OK'}, 0, "called XMLRPCupdateSecrets, cryptsecret table successfully updated");
+		notify($ERRORS{'OK'}, 0, "called XMLRPCcheckCryptSecrets, cryptsecret table successfully updated");
 	}
 	elsif ($response->value->{status} =~ /noupdate/) {
-		notify($ERRORS{'OK'}, 0, "called XMLRPCupdateSecrets, cryptsecret table does not need to be updated");
+		notify($ERRORS{'OK'}, 0, "called XMLRPCcheckCryptSecrets, cryptsecret table does not need to be updated");
 	}
 	else {
 		notify($ERRORS{'WARNING'}, 0, "failed to update cryptsecret table, $xmlrpc_function returned:\n" .