Skip to content

Commit

Permalink
Merge pull request #25 from sdsznsk/fix_passwordadmin
Browse files Browse the repository at this point in the history
Change autogenerated adminPassword from 3 to 2 words
  • Loading branch information
BrettMayson authored Nov 22, 2023
2 parents 5d36215 + faf6984 commit 002e6be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def random_passphrase():
while "'" in password:
with open("/usr/share/dict/american-english") as f:
words = f.readlines()
password = "-".join(random.sample(words, 3)).replace("\n", "").lower()
password = "-".join(random.sample(words, 2)).replace("\n", "").lower()
return password


Expand Down

0 comments on commit 002e6be

Please sign in to comment.