first add files

This commit is contained in:
2023-10-08 20:59:00 +08:00
parent b494be364b
commit 1dac226337
991 changed files with 368151 additions and 40 deletions

10
sbin/gen_root_pw Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
import crypt
import string
import random
def get_pw():
pw = random.random()
return crypt.crypt(str(pw))
if __name__ == '__main__':
print (get_pw())