Synchronizing two LDAP servers. Focused on syncing LDAP users that use the LUSER library.
Go to file
2024-04-08 00:26:13 +02:00
models.py many bug fixes 2024-04-05 17:28:42 +02:00
README.md add README 2024-04-08 00:26:13 +02:00

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.ldapserver("192.168.1.13", "cn=admin,dc=example,dc=com", "adminpass", "ou=Users,dc=example,dc=com")
server2 = lgit.ldapserver("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.ldapserver("192.168.1.13", "cn=admin,dc=example,dc=com", "adminpass", "ou=Users,dc=example,dc=com")
server2 = lgit.ldapserver("192.168.1.21", "ou=bob,ou=Users,dc=example,dc=com", "pasSw0rd", "ou=Users,dc=example,dc=com")

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