1
0
mirror of https://github.com/kakwa/ldapcherry synced 2025-04-18 08:07:23 +02:00

pepify the source code

This commit is contained in:
kakwa 2016-06-17 00:10:02 +02:00
parent d8631da7ba
commit b8a65a44b6
3 changed files with 41 additions and 45 deletions

View File

@ -58,7 +58,6 @@ DONT_REQ_PREAUTH = 0x400000
PASSWORD_EXPIRED = 0x800000 PASSWORD_EXPIRED = 0x800000
TRUSTED_TO_AUTH_FOR_DELEGATION = 0x1000000 TRUSTED_TO_AUTH_FOR_DELEGATION = 0x1000000
PARTIAL_SECRETS_ACCOUNT = 0x04000000 PARTIAL_SECRETS_ACCOUNT = 0x04000000
# Generated by the followin command: # Generated by the followin command:
# samba-tool group list | \ # samba-tool group list | \
@ -184,14 +183,12 @@ class Backend(ldapcherry.backend.backendLdap.Backend):
dn = str('CN=%(cn)s,%(user_dn)s' % { dn = str('CN=%(cn)s,%(user_dn)s' % {
'cn': cn, 'cn': cn,
'user_dn': self.userdn 'user_dn': self.userdn
} })
)
attrs = {} attrs = {}
attrs['unicodePwd'] = str(password_value) attrs['unicodePwd'] = str(password_value)
#ldif = modlist.modifyModlist({'unicodePwd': 'asad'}, attrs)
ldif = modlist.modifyModlist({'unicodePwd': 'tmp'}, attrs) ldif = modlist.modifyModlist({'unicodePwd': 'tmp'}, attrs)
ldap_client.modify_s(dn, ldif) ldap_client.modify_s(dn, ldif)

View File

@ -259,7 +259,6 @@ class Backend(ldapcherry.backend.Backend):
else: else:
dn_entry = r[0] dn_entry = r[0]
return dn_entry return dn_entry
# python-ldap talks in bytes, # python-ldap talks in bytes,
# as the rest of ldapcherry talks in unicode utf-8: # as the rest of ldapcherry talks in unicode utf-8:
# * everything passed to python-ldap must be converted to bytes # * everything passed to python-ldap must be converted to bytes