summaryrefslogtreecommitdiffstats
path: root/base/server/python/pki/server/__init__.py
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2016-03-17 10:59:19 +0100
committerEndi S. Dewata <edewata@redhat.com>2016-04-05 22:45:50 +0200
commit8267e90f65c427ce30518edcc1889b535c32da83 (patch)
treea562c8e8dd2507a673dda0f20b7a82c3d329586d /base/server/python/pki/server/__init__.py
parent72a71cf51e1486532e8dc4f646c51eda0479734d (diff)
downloadpki-8267e90f65c427ce30518edcc1889b535c32da83.tar.gz
pki-8267e90f65c427ce30518edcc1889b535c32da83.tar.xz
pki-8267e90f65c427ce30518edcc1889b535c32da83.zip
Renamed PKCS #12 options for consistency.
The pki CLI's --pkcs12 options has been renamed to --pkcs12-file for consistency with pki-server CLI options. https://fedorahosted.org/pki/ticket/1742
Diffstat (limited to 'base/server/python/pki/server/__init__.py')
-rw-r--r--base/server/python/pki/server/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/server/python/pki/server/__init__.py b/base/server/python/pki/server/__init__.py
index 2c735f0ef..2f0b5bdf0 100644
--- a/base/server/python/pki/server/__init__.py
+++ b/base/server/python/pki/server/__init__.py
@@ -188,7 +188,7 @@ class PKISubsystem(object):
cmd.extend([
'pkcs12-cert-add',
- '--pkcs12', pkcs12_file,
+ '--pkcs12-file', pkcs12_file,
'--pkcs12-password-file', pkcs12_password_file,
])
@@ -236,7 +236,7 @@ class PKISubsystem(object):
cmd.extend([
'pkcs12-export',
- '--pkcs12', pkcs12_file,
+ '--pkcs12-file', pkcs12_file,
'--pkcs12-password-file', pkcs12_password_file,
nickname
])
@@ -255,7 +255,7 @@ class PKISubsystem(object):
cmd.extend([
'pkcs12-cert-del',
- '--pkcs12', pkcs12_file,
+ '--pkcs12-file', pkcs12_file,
'--pkcs12-password-file', pkcs12_password_file,
nickname
])