summaryrefslogtreecommitdiffstats
path: root/ipaplatform/base
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2016-11-23 16:13:31 +0100
committerMartin Basti <mbasti@redhat.com>2016-11-29 14:50:51 +0100
commit75b70e3f0d52a9c98f443d3fc2f7cef92bdc7b1a (patch)
treeb96ee0dcba2c031f1ac685e468e1d97183ffdade /ipaplatform/base
parentd911f493482d29829199cce2f91f88a9b53369e1 (diff)
downloadfreeipa-75b70e3f0d52a9c98f443d3fc2f7cef92bdc7b1a.tar.gz
freeipa-75b70e3f0d52a9c98f443d3fc2f7cef92bdc7b1a.tar.xz
freeipa-75b70e3f0d52a9c98f443d3fc2f7cef92bdc7b1a.zip
ipautil: move is_fips_enabled() to ipaplatform.tasks
The FIPS setting is platform-specific. https://fedorahosted.org/freeipa/ticket/6474 Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Diffstat (limited to 'ipaplatform/base')
-rw-r--r--ipaplatform/base/tasks.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/ipaplatform/base/tasks.py b/ipaplatform/base/tasks.py
index 1e687b618..702da6b7e 100644
--- a/ipaplatform/base/tasks.py
+++ b/ipaplatform/base/tasks.py
@@ -249,3 +249,6 @@ class BaseTaskNamespace(object):
def remove_httpd_service_ipa_conf(self):
"""Remove configuration of httpd service of IPA"""
raise NotImplementedError()
+
+ def is_fips_enabled(self):
+ return False