diff options
author | Martin Basti <mbasti@redhat.com> | 2014-12-11 09:38:46 +0100 |
---|---|---|
committer | Jan Cholasta <jcholast@redhat.com> | 2014-12-11 10:21:53 +0000 |
commit | 95becc1d542c78721088398eddbfd0d0ffe9b27f (patch) | |
tree | 30b9dbef0f5e57f6501d12f4dc9d88838944f935 /ipaplatform | |
parent | 3e406f9924428e638dd37d2b43f6c349f1ce36e8 (diff) | |
download | freeipa-95becc1d542c78721088398eddbfd0d0ffe9b27f.tar.gz freeipa-95becc1d542c78721088398eddbfd0d0ffe9b27f.tar.xz freeipa-95becc1d542c78721088398eddbfd0d0ffe9b27f.zip |
Fix don't check certificate during getting CA status
Due workaroud we accidentaly started to check certificate, which causes
problems during installation.
Ticket: https://fedorahosted.org/freeipa/ticket/4676
Reviewed-By: Jan Cholasta <jcholast@redhat.com>
Diffstat (limited to 'ipaplatform')
-rw-r--r-- | ipaplatform/redhat/services.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ipaplatform/redhat/services.py b/ipaplatform/redhat/services.py index 20d0adec4..8759cab76 100644 --- a/ipaplatform/redhat/services.py +++ b/ipaplatform/redhat/services.py @@ -204,6 +204,7 @@ class RedHatCAService(RedHatService): paths.BIN_WGET, '-S', '-O', '-', '--timeout=30', + '--no-check-certificate', url ] |