From 2ff3c4d50a3ca3f66db097d2c15f46417ad5a3fc Mon Sep 17 00:00:00 2001 From: Ade Lee Date: Fri, 10 Jun 2016 22:18:03 -0400 Subject: Add man page and clarify CLI for kra-connector --- base/server/python/pki/server/deployment/pkihelper.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'base/server/python') diff --git a/base/server/python/pki/server/deployment/pkihelper.py b/base/server/python/pki/server/deployment/pkihelper.py index 50146af99..1be984d12 100644 --- a/base/server/python/pki/server/deployment/pkihelper.py +++ b/base/server/python/pki/server/deployment/pkihelper.py @@ -3068,7 +3068,7 @@ class KRAConnector: # noinspection PyBroadException # pylint: disable=W0703 try: - self.execute_using_sslget( + self.execute_using_pki( ca_port, ca_host, subsystemnick, token_pwd, krahost, kraport) except Exception: @@ -3119,7 +3119,9 @@ class KRAConnector: "-P", "https", "-d", self.mdict['pki_database_path'], "-c", token_pwd, - "ca-kraconnector-del", krahost, str(kraport)] + "ca-kraconnector-del", + "--host", krahost, + "--port", str(kraport)] output = subprocess.check_output(command, stderr=subprocess.STDOUT) -- cgit