from .config import LDAPMigrationConfiguration
from .idict import CaseInsensitiveDict
-__version__ = '0.6.4'
+__version__ = '0.6.5'
LOG = logging.getLogger(__name__)
CFG_BASENAME = 'ldap-migration.ini'
def migrate_structural_entries(self):
print()
- LOG.info("Migrating all structural from source to target LDAP cluster.")
+ LOG.info("Migrating all structural entries from source to target LDAP cluster.")
self.count_unchanged = 0
self.count_added = 0
self._migrate_entries(self.struct_dns, is_root=True, with_acl=False)
+ print()
total = self.count_unchanged + self.count_added + self.count_modified
msg = (
"Performed structural entries: {to} total, {ad} added, {mo} modified, "