From b04ceea73356b07bd2c8d3d912b1dff5254865eb Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Jul 18 2011 06:57:45 +0000 Subject: Specify the package name when the replication plugin is missing. ticket https://fedorahosted.org/freeipa/ticket/1155 --- diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py index b32e945..ac3abc4 100644 --- a/ipaserver/install/replication.py +++ b/ipaserver/install/replication.py @@ -83,7 +83,8 @@ def check_replication_plugin(): """ 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 "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