From a6d448b8bf70ef29aa4a2c16afb9aee068a95ae4 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Wed, 27 May 2015 14:31:13 +0200 Subject: idviews: Set dcerpc detection flag properly The availability of dcerpc bindings is being checked on the client side as well, hence we need to define it properly. https://fedorahosted.org/freeipa/ticket/5025 Reviewed-By: Alexander Bokovoy --- ipalib/plugins/idviews.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ipalib') diff --git a/ipalib/plugins/idviews.py b/ipalib/plugins/idviews.py index 57f0cce15..a7b1e0a78 100644 --- a/ipalib/plugins/idviews.py +++ b/ipalib/plugins/idviews.py @@ -30,12 +30,14 @@ from ipalib.util import (normalize_sshpubkey, validate_sshpubkey, from ipapython.dn import DN +_dcerpc_bindings_installed = False + if api.env.in_server and api.env.context in ['lite', 'server']: try: import ipaserver.dcerpc _dcerpc_bindings_installed = True except ImportError: - _dcerpc_bindings_installed = False + pass __doc__ = _(""" ID Views -- cgit