From 9ccd979f02b85e4d7cdccdf3502fead94643a08d Mon Sep 17 00:00:00 2001 From: Martin Kosek Date: Tue, 20 Sep 2011 10:40:16 +0200 Subject: Remove checks for ds-replication plugin The replication plugin is no longer shipped as a separate package. Remove the code checking its existence. https://fedorahosted.org/freeipa/ticket/1815 --- ipaserver/install/replication.py | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'ipaserver/install/replication.py') diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py index 961e7133..986fb5e8 100644 --- a/ipaserver/install/replication.py +++ b/ipaserver/install/replication.py @@ -75,21 +75,6 @@ def replica_conn_check(master_host, host_name, realm, check_ca, else: print "Connection check OK" - -def check_replication_plugin(): - """ - Confirm that the 389-ds replication is installed. - - Emit a message and return True/False - """ - if not os.path.exists('/usr/lib/dirsrv/plugins/libreplication-plugin.so') and \ - not os.path.exists('/usr/lib64/dirsrv/plugins/libreplication-plugin.so'): - print "The 389-ds replication plug-in was not found on this system." - print "Please install the 'ds-replication' package and start the installation again" - return False - - return True - def enable_replication_version_checking(hostname, realm, dirman_passwd): """ Check the replication version checking plugin. If it is not -- cgit