summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/installutils.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2012-02-15 16:55:59 -0500
committerMartin Kosek <mkosek@redhat.com>2012-02-16 14:43:08 +0100
commitb9bc99e43ae7c364e5c3804d46efcb442da1dda4 (patch)
tree54e41bb693cb87fc01a9c0cf7bff444b509b4052 /ipaserver/install/installutils.py
parent0c6e04712899d879ddbe63f957bbf6d866fd2b70 (diff)
downloadfreeipa.git-b9bc99e43ae7c364e5c3804d46efcb442da1dda4.tar.gz
freeipa.git-b9bc99e43ae7c364e5c3804d46efcb442da1dda4.tar.xz
freeipa.git-b9bc99e43ae7c364e5c3804d46efcb442da1dda4.zip
Enable ipa_memcached when upgrading
Add support for autobind to services. This is a bit of a special case so I currently require the caller to specify ldapi separately. It only makes sense to do this only in upgrade cases. Also uninstall ipa_memcached when uninstalling the server. https://fedorahosted.org/freeipa/ticket/2399
Diffstat (limited to 'ipaserver/install/installutils.py')
-rw-r--r--ipaserver/install/installutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/installutils.py b/ipaserver/install/installutils.py
index 94c1fabf..a9a3ec43 100644
--- a/ipaserver/install/installutils.py
+++ b/ipaserver/install/installutils.py
@@ -36,7 +36,7 @@ from ipapython import ipautil, dnsclient, sysrestore
from ipapython.ipa_log_manager import *
# Used to determine install status
-IPA_MODULES = ['httpd', 'kadmin', 'dirsrv', 'pki-cad', 'pkids', 'install', 'krb5kdc', 'ntpd', 'named']
+IPA_MODULES = ['httpd', 'kadmin', 'dirsrv', 'pki-cad', 'pkids', 'install', 'krb5kdc', 'ntpd', 'named', 'ipa_memcached']
class BadHostError(Exception):
pass