summaryrefslogtreecommitdiffstats
path: root/ipalib
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2013-09-11 08:27:34 +0000
committerPetr Viktorin <pviktori@redhat.com>2014-03-25 16:54:54 +0100
commitfea7163e87ef7b2e46fa18dc77836ec9ee92ce02 (patch)
tree0d687ebd9cf6120beafad04efd86ff9b785caf8c /ipalib
parent4c761108e871ae029b5e1a16aaf35f9e78a3c02e (diff)
downloadfreeipa-fea7163e87ef7b2e46fa18dc77836ec9ee92ce02.tar.gz
freeipa-fea7163e87ef7b2e46fa18dc77836ec9ee92ce02.tar.xz
freeipa-fea7163e87ef7b2e46fa18dc77836ec9ee92ce02.zip
Move CACERT definition to a single place.
Reviewed-By: Petr Viktorin <pviktori@redhat.com>
Diffstat (limited to 'ipalib')
-rw-r--r--ipalib/constants.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ipalib/constants.py b/ipalib/constants.py
index 5a304daeb..8fc04afcd 100644
--- a/ipalib/constants.py
+++ b/ipalib/constants.py
@@ -32,6 +32,9 @@ except:
except:
FQDN = None
+# Path to CA certificate bundle
+CACERT = '/etc/ipa/ca.crt'
+
# regular expression NameSpace member names must match:
NAME_REGEX = r'^[a-z][_a-z0-9]*[a-z0-9]$|^[a-z]$'