diff options
author | Jan Cholasta <jcholast@redhat.com> | 2013-06-05 14:47:31 +0200 |
---|---|---|
committer | Petr Viktorin <pviktori@redhat.com> | 2013-06-12 12:59:54 +0200 |
commit | cf84376928111447c083ab75ede5bccd7a5d211b (patch) | |
tree | 802598ae8024729d1a033757e4550626a0322e29 /install | |
parent | e8e88ed2084faeba7858f54c310e333b60513ed5 (diff) | |
download | freeipa-cf84376928111447c083ab75ede5bccd7a5d211b.tar.gz freeipa-cf84376928111447c083ab75ede5bccd7a5d211b.tar.xz freeipa-cf84376928111447c083ab75ede5bccd7a5d211b.zip |
Use the correct PKCS#12 file for HTTP server.
https://fedorahosted.org/freeipa/ticket/3665
Diffstat (limited to 'install')
-rwxr-xr-x | install/tools/ipa-server-install | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/tools/ipa-server-install b/install/tools/ipa-server-install index b90613295..56acdafaf 100755 --- a/install/tools/ipa-server-install +++ b/install/tools/ipa-server-install @@ -709,7 +709,7 @@ def main(): if options.http_pkcs12: http_pin_file = ipautil.write_tmp_file(options.http_pin) - http_pkcs12_info = (options.dirsrv_pkcs12, http_pin_file.name) + http_pkcs12_info = (options.http_pkcs12, http_pin_file.name) if options.dirsrv_pkcs12: dirsrv_pin_file = ipautil.write_tmp_file(options.dirsrv_pin) |