From 86782f3f52867394464d88cf3af5488c386fc85c Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Fri, 16 Aug 2024 20:56:16 +0330 Subject: [PATCH] Removed Restart Service --- core/scripts/hysteria2/add_user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/scripts/hysteria2/add_user.sh b/core/scripts/hysteria2/add_user.sh index 45faffa..267c265 100644 --- a/core/scripts/hysteria2/add_user.sh +++ b/core/scripts/hysteria2/add_user.sh @@ -53,7 +53,7 @@ add_user() { '.[$username] = {password: $password, max_download_bytes: $traffic, expiration_days: $expiration_days, account_creation_date: $creation_date, blocked: false}' \ "$USERS_FILE" > "${USERS_FILE}.temp" && mv "${USERS_FILE}.temp" "$USERS_FILE" - python3 "$CLI_PATH" restart-hysteria2 > /dev/null 2>&1 + # python3 "$CLI_PATH" restart-hysteria2 > /dev/null 2>&1 echo -e "User $username added successfully." }