Synchronizing two LDAP servers. Focused on syncing LDAP users that use the LUSER library.
Go to file
fram3d 4f954c97d7
add isempty function
2024-04-11 11:37:31 +02:00
.gitignore add gitignore 2024-04-11 11:09:27 +02:00
LICENSE add AGPLv3 LICENSE file 2024-04-08 01:29:34 +02:00
README.md rename class ldapsync to lgit, fix typos in README 2024-04-08 00:29:39 +02:00
lgit.py add isempty function 2024-04-11 11:37:31 +02:00

README.md

LGit (pronounced "legit")

python library that allows to use LDAP user database, based on luser project with git-like functions

Examples:

Following script copies changes made on 192.168.1.13 LDAP server to the 192.168.1.21 server

import lgit

server1 = lgit.logserver("192.168.1.13", "cn=admin,dc=example,dc=com", "adminpass", "ou=Users,dc=example,dc=com")
server2 = lgit.logserver("192.168.1.21", "ou=bob,ou=Users,dc=example,dc=com", "pasSw0rd", "ou=Users,dc=example,dc=com")

server1.pull(server2)

Following script pulls all user changes from both servers to each other

import lgit

server1 = lgit.logserver("192.168.1.13", "cn=admin,dc=example,dc=com", "adminpass", "ou=Users,dc=example,dc=com")
server2 = lgit.logserver("192.168.1.21", "ou=bob,ou=Users,dc=example,dc=com", "pasSw0rd", "ou=Users,dc=example,dc=com")

lg = lgit.lgit()
lg.sync()