X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=blobdiff_plain;f=ud-info;fp=ud-info;h=1c91f1c063aa1e0f5457c806ad878348f16fa1b3;hp=a94ff91a328acdc8326193df17462a51bc34964a;hb=48f23bfe24d42b3e209eeaf06305a453ea0d5fda;hpb=86a2cb531c55baec854944024f243e4d9def08e9 diff --git a/ud-info b/ud-info index a94ff91..1c91f1c 100755 --- a/ud-info +++ b/ud-info @@ -444,7 +444,7 @@ while(1): print "Set account to:" print " 1) retiring (lock account but do not disable mail):" - print " 2) retired (lock account and disable mail):" + print " 2) inactive (removed/emeritus/... - lock account and disable mail):" print " 3) memorial (lock account and disable mail):" print " 4) active (do not change other settings, you will have to deal with them)" print " q) return (no change)" @@ -454,7 +454,7 @@ while(1): if Resp == "1": newstatus = "retiring %s"%(time.strftime("%Y-%m-%d")) else: - newstatus = "retired %s"%(time.strftime("%Y-%m-%d")) + newstatus = "inactive %s"%(time.strftime("%Y-%m-%d")) l.modify_s(UserDn,[(ldap.MOD_REPLACE,"accountStatus",newstatus)]) Attrs[0][1]["accountStatus"] = [newstatus]