Results 71 issues of Jeremy Whitlock

`Error: {'info': "TLS error -8172:Peer's certificate issuer has been marked as not trusted by the user.", 'desc': "Can't contact LDAP server"}`

I am using your script on CentOS 6. I got the following error when using your script more then once: Error performing search: `{'info': '00002024: LdapErr: DSID-0C060595, comment: No other...

All swedish chars are stripped from groupnames and usernames. For example: `föreningen` becomes `freningen`. application_version is `1.0.3` and syncing an AD with options (I've changed some details): `script \ -d...

When the output is generated, there is very little difference between verbose output and `--quiet` output. It doesn't seem like `--quiet` suppresses the 'background noise' generated by the script. I...

In function `main`, I had to insert `sleep(3)` between `bind` on line 533 and `search_for_groups` on line 541. Without this delay, the Active Directory server thinks the bind operation is...

`os.rename` only works if source and destination are on the same file system which is usually not the case on properly configured *nix boxes. ;-) The attached patch replaces `os.rename`...

`create_group_model` contains a test for each member of each group, that checks whether the member is really another group. However, `get_dict_key_from_value` will return `None` if the member is a group,...

Hello If I understood correctly, there is configuration section in the script which can be changed if one wants to avoid passing parameters. This section, however, is not taken in...

Currently, the bind-dn is required which disallows anonymous binds. The attached patch adds support for anonymous binding by not passing a bind-dn: ``` diff Index: sync_ldap_groups_to_svn_authz.py =================================================================== --- sync_ldap_groups_to_svn_authz.py (revision...

In an AD environment a user's primary group is not stored in the member attribute. Instead, the group's `RID` value is stored in the `primaryGroupID` attribute of the user. To...