X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=blobdiff_plain;f=ud-arbimport;h=90a1746e3e350ca99404157768e933048bbc659e;hp=0574f79803460045537ce976e04078cb50daaec9;hb=HEAD;hpb=f561403b242249bc684536cfb2615084e4105278 diff --git a/ud-arbimport b/ud-arbimport index 0574f79..90a1746 100755 --- a/ud-arbimport +++ b/ud-arbimport @@ -1,10 +1,28 @@ #!/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: -import string, re, time, ldap, getopt, sys; +import re, time, ldap, getopt, sys; from userdir_ldap import *; # Process options @@ -18,10 +36,10 @@ for (switch, val) in options: NoAct = 1; if len(arguments) == 0: print "Give the key to assignt to then the file to import"; - os.exit(0); + sys.exit(0) # Main program starts here -l = passwdAccessLDAP(LDAPServer, BaseDn, AdminUser) +l = passwdAccessLDAP(BaseDn, AdminUser) List = open(arguments[1],"r"); Set = []; @@ -34,7 +52,7 @@ while(1): if User == None: User = Split[0]; if Split[0] == User: - Set.append(string.strip(Split[1])); + Set.append(Split[1].strip()); continue; else: if len(Set) == 0: @@ -56,4 +74,4 @@ while(1): if Line == "": break; User = Split[0]; - Set = [string.strip(Split[1])]; + Set = [Split[1].strip()];