From: Avinash S. <av...@su...> - 2009-10-06 12:25:30
|
Michael Ströder wrote: > Avinash Sultanpur wrote: > >> What is the equivalent of running the below command in python-ldap? >> >> ldappasswd -x -D <root_dn> -w <root_pw> -s secret_password \ >> uid=user000,ou=People,dc=example,dc=com >> > > ldap_conn = ldap.initialize(...) > ldap_conn.simple_bind_s('<rootdn>,'<rootpw>') > ldap_conn.passwd_s('uid=user000,ou=People,dc=example,dc=com',None,'<newpassword>') > Thanks Michael. I didn't realize I could use 'None' for the old password! -Avinash |