summaryrefslogtreecommitdiffstats
path: root/ipaserver
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2011-07-18 02:55:50 -0400
committerRob Crittenden <rcritten@redhat.com>2011-07-18 02:55:50 -0400
commitf7f03183df07c6b21101c6539742acbf8df66ea6 (patch)
tree2d72a05f3a1e7ddd65b9f25f9d90016f2bed7c8a /ipaserver
parent630ca4f40ad3b5851001555641aa015f5fb544d6 (diff)
downloadfreeipa-f7f03183df07c6b21101c6539742acbf8df66ea6.tar.gz
freeipa-f7f03183df07c6b21101c6539742acbf8df66ea6.tar.xz
freeipa-f7f03183df07c6b21101c6539742acbf8df66ea6.zip
Specify the package name when the replication plugin is missing.
ticket https://fedorahosted.org/freeipa/ticket/1155
Diffstat (limited to 'ipaserver')
-rw-r--r--ipaserver/install/replication.py3
1 files changed, 2 insertions, 1 deletions
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