Lines Matching refs:suffix

231     suffix = synchronizedSuffixList[i]

232 dn = suffix.getSuffixDn()
233 id = suffix.getId()
234 list = suffix.getChangelogServerList()
264 # Define the function that writes a ldif file with the root suffix entry to add
265 # for a given suffix.
266 def write_replication_add_root_suffix_ldif_file(path, suffix):
270 equalChar = suffix.find('=')
271 commaChar = suffix.find(',')
273 commaChar = len(suffix)
274 rdnType = suffix[:equalChar].strip()
275 rdnValue = suffix[equalChar + 1 : commaChar].strip()
286 ldifLines.append('dn: %s' % suffix)
303 # under a given suffix.
304 def write_replication_add_single_ldif_file(path, suffix):
309 ldifLines.append('dn: uid=scarter,%s' % suffix)
341 # under a given suffix.
342 def write_replication_add_multiple_ldif_file(path, suffix):
346 ldifLines.append('dn: o=replication tests,%s' % suffix)
351 ldifLines.append('dn: ou=People,o=replication tests,%s' % suffix)
356 ldifLines.append('dn: ou=Groups, o=replication tests,%s' % suffix)
361 ldifLines.append('dn: cn=Directory Administrators, ou=Groups, o=replication tests,%s' % suffix)
366 ldifLines.append('uniquemember: uid=kvaughan, ou=People, o=replication tests,%s' % suffix)
367 ldifLines.append('uniquemember: uid=rdaugherty, ou=People, o=replication tests,%s' % suffix)
368 ldifLines.append('uniquemember: uid=hmiller, ou=People, o=replication tests,%s' % suffix)
370 ldifLines.append('dn: ou=Special Users,o=replication tests,%s' % suffix)
376 ldifLines.append('dn: uid=scarter,ou=People,o=replication tests,%s' % suffix)
406 # on an entry in a given suffix.
429 # on an entry in a given suffix.
457 # on an entry in a given suffix.