diff options
-rw-r--r-- | ipa-server/ipa-install/ipa-replica-manage | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ipa-server/ipa-install/ipa-replica-manage b/ipa-server/ipa-install/ipa-replica-manage index 6761a0e5..dd58907c 100644 --- a/ipa-server/ipa-install/ipa-replica-manage +++ b/ipa-server/ipa-install/ipa-replica-manage @@ -57,9 +57,7 @@ def list_masters(replman, verbose): for dn in dns: entry = replman.conn.search_s(dn, ldap.SCOPE_SUBTREE)[0] - cn = entry.cn - other = re.search("meTo([a-zA-Z\.]*)[0-9]*", cn).groups()[0] - print other + print entry.getValue('nsds5replicahost') if verbose: print " last init status: %s" % entry.nsds5replicalastinitstatus |