summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-11-22 14:42:33 +0100
committerMartin Basti <mbasti@redhat.com>2016-11-29 14:50:51 +0100
commit977050c66bccd7b8cf468c115d73250505a01034 (patch)
tree21d42ca82e118c2a70ec15a0cd84567f914347fc /ipalib
parenta2c58889735c794cd1e93331c755b6f9ba273773 (diff)
downloadfreeipa-977050c66bccd7b8cf468c115d73250505a01034.tar.gz
freeipa-977050c66bccd7b8cf468c115d73250505a01034.tar.xz
freeipa-977050c66bccd7b8cf468c115d73250505a01034.zip
constants: remove CACERT
CACERT depends on ipaplatform. Replace all uses of CACERT with paths.IPA_CA_CRT and remove CACERT. https://fedorahosted.org/freeipa/ticket/6474 Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/constants.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index b7a0813cf..80bbdbce0 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -22,7 +22,6 @@
All constants centralised in one file.
"""
import socket
-from ipaplatform.paths import paths
from ipapython.dn import DN
from ipapython.version import VERSION, API_VERSION
@@ -34,9 +33,6 @@ except Exception:
except Exception:
FQDN = None
-# Path to CA certificate bundle
-CACERT = paths.IPA_CA_CRT
-
# regular expression NameSpace member names must match:
NAME_REGEX = r'^[a-z][_a-z0-9]*[a-z0-9]$|^[a-z]$'