diff options
author | Jan Cholasta <jcholast@redhat.com> | 2016-11-22 17:55:10 +0100 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-11-29 14:50:51 +0100 |
commit | a1f260d021bf5d018e634438fde6b7c81ebbbcef (patch) | |
tree | 29f979f42913f804514f92ada0cb953fdb6d095f /ipaserver/install/custodiainstance.py | |
parent | 8e5d2c7014ff6371a3b306e666c301aea1f7a488 (diff) | |
download | freeipa-a1f260d021bf5d018e634438fde6b7c81ebbbcef.tar.gz freeipa-a1f260d021bf5d018e634438fde6b7c81ebbbcef.tar.xz freeipa-a1f260d021bf5d018e634438fde6b7c81ebbbcef.zip |
ipapython: move dnssec, p11helper and secrets to ipaserver
The dnssec and secrets subpackages and the p11helper module depend on
ipaplatform.
Move them to ipaserver as they are used only on the server.
https://fedorahosted.org/freeipa/ticket/6474
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Diffstat (limited to 'ipaserver/install/custodiainstance.py')
-rw-r--r-- | ipaserver/install/custodiainstance.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipaserver/install/custodiainstance.py b/ipaserver/install/custodiainstance.py index b0c952d68..604a6da3e 100644 --- a/ipaserver/install/custodiainstance.py +++ b/ipaserver/install/custodiainstance.py @@ -1,7 +1,7 @@ # Copyright (C) 2015 FreeIPa Project Contributors, see 'COPYING' for license. -from ipapython.secrets.kem import IPAKEMKeys -from ipapython.secrets.client import CustodiaClient +from ipaserver.secrets.kem import IPAKEMKeys +from ipaserver.secrets.client import CustodiaClient from ipaserver.install.certs import CertDB from ipaplatform.paths import paths from ipaplatform.constants import constants |