From 75ab56214fc269f1e215ee1a2cf99100f2245f56 Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:00:21 +0330 Subject: [PATCH] Removed comment --- core/scripts/warp/install.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/core/scripts/warp/install.sh b/core/scripts/warp/install.sh index 3ce44e1..22cbeb0 100644 --- a/core/scripts/warp/install.sh +++ b/core/scripts/warp/install.sh @@ -1,20 +1,15 @@ #!/bin/bash -# Source the path.sh script to load the CONFIG_FILE variable source /etc/hysteria/core/scripts/path.sh -# Check if wg-quick@wgcf.service is active if systemctl is-active --quiet wg-quick@wgcf.service; then echo "WARP is already active. Skipping installation and configuration update." else echo "Installing WARP..." bash <(curl -fsSL https://raw.githubusercontent.com/ReturnFI/Warp/main/warp.sh) wgx - # Check if the config file exists if [ -f "$CONFIG_FILE" ]; then - # Add the outbound configuration to the config.json file jq '.outbounds += [{"name": "warps", "type": "direct", "direct": {"mode": 4, "bindDevice": "wgcf"}}]' "$CONFIG_FILE" > /etc/hysteria/config_temp.json && mv /etc/hysteria/config_temp.json "$CONFIG_FILE" - # Restart the hysteria-server service python3 "$CLI_PATH" restart-hysteria2 > /dev/null 2>&1 echo "WARP installed and outbound added to config.json." else