summaryrefslogtreecommitdiffstats
path: root/install/tools/ipactl
diff options
context:
space:
mode:
authorPetr Viktorin <pviktori@redhat.com>2012-11-15 09:38:24 -0500
committerPetr Viktorin <pviktori@redhat.com>2013-05-31 10:26:07 +0200
commit34ba1b7060a9f5271c4f59bca7bfb689335e1c47 (patch)
treee63ced8ce58243773f1c240d68956c944d194d79 /install/tools/ipactl
parentb21abc76caac8b251f708e77da7c8c7046fa22a7 (diff)
downloadfreeipa-34ba1b7060a9f5271c4f59bca7bfb689335e1c47.tar.gz
freeipa-34ba1b7060a9f5271c4f59bca7bfb689335e1c47.tar.xz
freeipa-34ba1b7060a9f5271c4f59bca7bfb689335e1c47.zip
Remove code to install Dogtag 9
Since we depend on Dogtag 10 now, there is no need to keep code that installs a Dogtag 9 CA. Support for upgraded Dogtag-9-style instances is left in. https://fedorahosted.org/freeipa/ticket/3529
Diffstat (limited to 'install/tools/ipactl')
-rwxr-xr-xinstall/tools/ipactl6
1 files changed, 2 insertions, 4 deletions
diff --git a/install/tools/ipactl b/install/tools/ipactl
index 2d699880c..df0d6f57e 100755
--- a/install/tools/ipactl
+++ b/install/tools/ipactl
@@ -45,16 +45,14 @@ def check_IPA_configuration():
def is_dirsrv_debugging_enabled():
"""
- Check the IPA and PKI-CA 389-ds instances to see if debugging is
- enabled. If so we suppress that in our output.
+ Check the 389-ds instance to see if debugging is enabled.
+ If so we suppress that in our output.
returns True or False
"""
debugging = False
serverid = realm_to_serverid(api.env.realm)
dselist = [config_dirname(serverid)]
- if not dogtag.install_constants.SHARED_DB:
- dselist.append('/etc/dirsrv/slapd-PKI-IPA/')
for dse in dselist:
try:
fd = open(dse + 'dse.ldif', 'r')