Since now the server certificates are copied in their own dedicated function, remove adding their file name in the general function for renewing crypto tokens.
Signed-off-by: Helga Velroyen <[email protected]> --- lib/client/gnt_cluster.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/client/gnt_cluster.py b/lib/client/gnt_cluster.py index 549d218..0626b48 100644 --- a/lib/client/gnt_cluster.py +++ b/lib/client/gnt_cluster.py @@ -1038,9 +1038,6 @@ def _RenewCrypto(new_cluster_cert, new_rapi_cert, # pylint: disable=R0911 files_to_copy = [] - if new_cluster_cert: - files_to_copy.append(pathutils.NODED_CERT_FILE) - if new_rapi_cert or rapi_cert_pem: files_to_copy.append(pathutils.RAPI_CERT_FILE) -- 2.4.3.573.g4eafbef
