X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=blobdiff_plain;f=ud-userimport;h=db81b65791502ae8eb62b7aa8e746ff5dad902b6;hp=f2e0ba1f937ed8a9a3312aa2d967c4c129d9617b;hb=HEAD;hpb=5aa344463ac8ad92dc9109e2a17cc7ce894f0ba4 diff --git a/ud-userimport b/ud-userimport index f2e0ba1..db81b65 100755 --- a/ud-userimport +++ b/ud-userimport @@ -145,7 +145,7 @@ def DoShadow(l,Shadow): continue; for x in range(2,8): - Split[x] = int(Split[x]) + int(Split[x]) Rec = [(ldap.MOD_REPLACE,"shadowLastChange",Split[2]), (ldap.MOD_REPLACE,"shadowMin",Split[3]), @@ -186,7 +186,7 @@ def DoGroup(l,Group): # Split up the group information Split = re.split("[:\n]",Line); Members = re.split("[, ]*",Split[3]); - Split[2] = int(Split[2]) + int(Split[2]) # Iterate over the membership list and add the membership information # To the directory @@ -249,7 +249,7 @@ for (switch, val) in options: # Main program starts here # Connect to the ldap server -l = passwdAccessLDAP(LDAPServer, BaseDn, AdminUser) +l = passwdAccessLDAP(BaseDn, AdminUser) if (Passwd != ""): DoPasswd(l,Passwd);