ignoring system users if they drop a homedir

This commit is contained in:
admins 2020-04-15 01:06:24 -04:00
parent e07a340e05
commit 7d6d08b217
1 changed files with 3 additions and 1 deletions

View File

@ -22,6 +22,8 @@ if __name__ == "__main__":
regusers = get_regusers("/home")
usertable.write("<ul>\n")
for user in sorted(regusers):
if user != "lost+found" and user != ".git" and user != "uucp" and user != "admins":
is_system = user.startswith("_")
is_hidden_dir = user.startswith(".")
if user != "lost+found" and user != "uucp" and user != "admins" and is_system == False and is_hidden_dir == False:
usertable.write("<li><a href=\"https://"+ user +".tilde.institute\">"+ user +"</a></li>\n")
usertable.write("</ul>\n")