Failure encountered while execution of installCerts.py script 77/105177/1
authorajay_dp001 <ajay.deep.singh@est.tech>
Mon, 6 Apr 2020 19:33:28 +0000 (01:03 +0530)
committerajay_dp001 <ajay.deep.singh@est.tech>
Mon, 6 Apr 2020 19:49:20 +0000 (01:19 +0530)
fails to convert keystore.jks/truststore.jks to keystore.p12/truststore.p12

Issue-ID: SDNC-1150

Signed-off-by: ajay_dp001 <ajay.deep.singh@est.tech>
Change-Id: I1ef77602b56199ab2c8f9223fdd3c2e6a1878c22

Former-commit-id: cb65f50142671a9f8bda4a7a65ead714aae2691a

installation/sdnc/src/main/scripts/installCerts.py

index a8133d5..ae5d5b3 100644 (file)
@@ -221,9 +221,9 @@ def timeIncrement(timePassed):
 
 def get_pass(file_name):
     try:
-        with open(file_name , 'r') as file_obj:
+        with open(file_name, 'r') as file_obj:
             password = file_obj.read().strip()
-        return password
+        return "'{}'".format(password)
     except Exception as e:
         logging.error("Error occurred while fetching password : %s", e)
         exit()