X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-arbimport;h=ab3af80e27c80d074560665b14817abf6f48ff88;hb=997a3ffb125ce1fe9eda5174630975a618e03c0e;hp=02430fbd9a715d2fcca432f3b6e310193bbf0de5;hpb=bd63e867238eb6d8c5756f43f7e2f4681eb11098;p=mirror%2Fuserdir-ldap.git diff --git a/ud-arbimport b/ud-arbimport index 02430fb..ab3af80 100755 --- a/ud-arbimport +++ b/ud-arbimport @@ -1,5 +1,23 @@ #!/usr/bin/env python # -*- mode: python -*- + +# Copyright (c) 1999 Jason Gunthorpe +# Copyright (c) 2004 Joey Schulze +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + # This script imports arbitary lists of data. The input is a file with # the form of: # uid: @@ -21,13 +39,7 @@ if len(arguments) == 0: os.exit(0); # Main program starts here -print "Accessing LDAP directory as '" + AdminUser + "'"; -Password = getpass(AdminUser + "'s password: "); - -# Connect to the ldap server -l = ldap.open(LDAPServer); -UserDn = "uid=" + AdminUser + "," + BaseDn; -#l.simple_bind_s(UserDn,Password); +l = passwdAccessLDAP(LDAPServer, BaseDn, AdminUser) List = open(arguments[1],"r"); Set = [];