summaryrefslogtreecommitdiffstats
path: root/ipaserver/dcerpc.py
diff options
context:
space:
mode:
authorJan Cholasta <jcholast@redhat.com>2015-06-04 11:59:22 +0000
committerJan Cholasta <jcholast@redhat.com>2015-06-08 15:33:36 +0000
commit08229a0c5457d4e0c13d6b02a1f38f60ea787856 (patch)
tree7e0d0318cc2b33b4fdbfa235ad06d81ae013a3c0 /ipaserver/dcerpc.py
parent4c70590c2a78b6d2cbfed585502442f733f26389 (diff)
downloadfreeipa-08229a0c5457d4e0c13d6b02a1f38f60ea787856.tar.gz
freeipa-08229a0c5457d4e0c13d6b02a1f38f60ea787856.tar.xz
freeipa-08229a0c5457d4e0c13d6b02a1f38f60ea787856.zip
install: Move private_ccache from ipaserver to ipapython
https://fedorahosted.org/freeipa/ticket/4468 Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipaserver/dcerpc.py')
-rw-r--r--ipaserver/dcerpc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/dcerpc.py b/ipaserver/dcerpc.py
index 44689cc96..a1c57d22c 100644
--- a/ipaserver/dcerpc.py
+++ b/ipaserver/dcerpc.py
@@ -590,7 +590,7 @@ class DomainValidator(object):
(ccache_name, principal) = self.kinit_as_http(info['dns_domain'])
if ccache_name:
- with installutils.private_ccache(path=ccache_name):
+ with ipautil.private_ccache(path=ccache_name):
entries = None
try:
@@ -1093,7 +1093,7 @@ def fetch_domains(api, mydomain, trustdomain, creds=None):
td.creds = credentials.Credentials()
td.creds.set_kerberos_state(credentials.MUST_USE_KERBEROS)
if ccache_name:
- with installutils.private_ccache(path=ccache_name):
+ with ipautil.private_ccache(path=ccache_name):
td.creds.guess(td.parm)
td.creds.set_workstation(domain_validator.flatname)
domains = communicate(td)