Make UIDs smaller for subuid and subgid

This commit is contained in:
Anthony Wang 2023-01-13 16:48:43 +00:00
parent c666bbe689
commit b111dcfdac
Signed by: a
GPG key ID: 42A5B952E6DD8D38

2
setid
View file

@ -6,7 +6,7 @@
ids = ''
for uid in range(1000, 2000):
start = uid * 10**5
start = (uid - 999) * 10**5
num = 65536 # Allocate 65536 UIDs
ids += str(uid) + ':' + str(start) + ':' + str(num) + '\n'