summaryrefslogtreecommitdiffstats
path: root/ipaserver/install/replication.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipaserver/install/replication.py')
-rw-r--r--ipaserver/install/replication.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/ipaserver/install/replication.py b/ipaserver/install/replication.py
index 64c3902a..6269ba68 100644
--- a/ipaserver/install/replication.py
+++ b/ipaserver/install/replication.py
@@ -307,20 +307,15 @@ class ReplicationManager(object):
Return the list of hosts we have replication agreements.
"""
- res = []
-
filt = self.get_agreement_filter(IPA_REPLICA)
try:
ents = self.conn.get_entries(
DN(('cn', 'mapping tree'), ('cn', 'config')),
ldap.SCOPE_SUBTREE, filt)
except errors.NotFound:
- return res
-
- for ent in ents:
- res.append(ent.single_value('nsds5replicahost', None))
+ ents = []
- return res
+ return ents
def get_replication_agreement(self, hostname):
"""