From 9b85c8fdbd36dd2d9df7c813eead166b11657e01 Mon Sep 17 00:00:00 2001 From: Tracker-Friendly Date: Mon, 20 Nov 2023 00:37:33 +0000 Subject: [PATCH] Updated login --- signup/signup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signup/signup.py b/signup/signup.py index a7d9fef..28ae12e 100644 --- a/signup/signup.py +++ b/signup/signup.py @@ -57,7 +57,7 @@ def create_email_account(username, password): file.write(password) # Pass the file through a shell command - cmd = ["cat", "tmp/password.tmp", "|", "doas", "-u", "maddy", "maddy", "creds", "create", f"{username}@hectabit.org"] + cmd = ["cat", "tmp/password.tmp", "|", "maddy", "creds", "create", f"{username}@hectabit.org"] # Run and determine the result of the shell command result = subprocess.run(" ".join(cmd), shell=True, check=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)