From f7f03183df07c6b21101c6539742acbf8df66ea6 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Mon, 18 Jul 2011 02:55:50 -0400 Subject: Specify the package name when the replication plugin is missing. ticket https://fedorahosted.org/freeipa/ticket/1155 --- ipaserver/install/replication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipaserver') diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py index da8e749e4..7186a18e8 100644 --- a/ipaserver/install/replication.py +++ b/ipaserver/install/replication.py @@ -84,7 +84,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 -- cgit