Skip to content

Commit

Permalink
CBQE-7208: 9/n Don't copy passphrase.sh when using pkcs#1 standard
Browse files Browse the repository at this point in the history
Change-Id: I188e8e30094f740743983bebef4f6450ef793f60
Reviewed-on: http://review.couchbase.org/c/testrunner/+/163358
Tested-by: Balakumaran G <balakumaran.gopal@couchbase.com>
Reviewed-by: Balakumaran G <balakumaran.gopal@couchbase.com>
  • Loading branch information
sumedhpb authored and bkumaran committed Oct 11, 2021
1 parent 9abb62f commit b44e96c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pytests/security/x509_multiple_CA_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,8 @@ def copy_node_cert(self, server):
self.copy_file_from_slave_to_server(server, node_ca_path, dest_pem_path)
dest_pkey_path = self.install_path + x509main.CHAINFILEPATH + "/pkey.key"
self.copy_file_from_slave_to_server(server, node_ca_key_path, dest_pkey_path)
if self.encryption_type and self.passphrase_type == "script":
if self.standard == "pkcs8" and self.encryption_type and \
self.passphrase_type == "script":
node_key_passphrase_path = self.get_node_private_key_passphrase_script(server)
if self.passphrase_script_path == "default":
dest_node_key_passphrase_path = self.install_path + \
Expand Down

0 comments on commit b44e96c

Please sign in to comment.