Import from samosa: Added support for locked accounts (*LK* as
authorjoey <>
Wed, 27 Oct 2004 11:13:31 +0000 (11:13 +0000)
committerjoey <>
Wed, 27 Oct 2004 11:13:31 +0000 (11:13 +0000)
password) when generating the shadow ssh key file

ud-generate

index a55df5d..2673b1d 100755 (executable)
@@ -158,8 +158,10 @@ def GenSSHShadow(l,File):
       raise "No Users";
 
    for x in PasswdAttrs:
-     if x[1].has_key("uidNumber") == 0 or \
-        x[1].has_key("sshRSAAuthKey") == 0:
+      # If the account is locked, do not write it.
+      # This is a partial stop-gap. The ssh also needs to change this
+      # to ignore ~/.ssh/authorized* files.
+      if (string.find(GetAttr(x,"userPassword"),"*LK*")  != -1):
          continue;
 
       if x[1].has_key("uidNumber") == 0 or \