Fix change_port.sh

This commit is contained in:
Sarina
2024-07-21 20:36:31 +03:30
parent 44f7b51eef
commit 6f76b9717c

View File

@ -1,16 +1,22 @@
while true; do # Function to update port number in configuration
read -p "Enter the new port number you want to use: " port update_port() {
local port=$1
# Validate the port number
if ! [[ "$port" =~ ^[0-9]+$ ]] || [ "$port" -lt 1 ] || [ "$port" -gt 65535 ]; then if ! [[ "$port" =~ ^[0-9]+$ ]] || [ "$port" -lt 1 ] || [ "$port" -gt 65535 ]; then
echo "Invalid port number. Please enter a number between 1 and 65535." echo "Invalid port number. Please enter a number between 1 and 65535."
else return 1
break
fi fi
done
# Check if the config file exists and update the port number
if [ -f "/etc/hysteria/config.json" ]; then if [ -f "/etc/hysteria/config.json" ]; then
jq --arg port "$port" '.listen = ":" + $port' /etc/hysteria/config.json > /etc/hysteria/config_temp.json && mv /etc/hysteria/config_temp.json /etc/hysteria/config.json jq --arg port "$port" '.listen = ":" + $port' /etc/hysteria/config.json > /etc/hysteria/config_temp.json && mv /etc/hysteria/config_temp.json /etc/hysteria/config.json
python3 /etc/hysteria/core/cli.py restart-hysteria2 > /dev/null 2>&1 python3 /etc/hysteria/core/cli.py restart-hysteria2 > /dev/null 2>&1
echo "Port changed successfully to $port." echo "Port changed successfully to $port."
else else
echo "${red}Error:${NC} Config file /etc/hysteria/config.json not found." echo "Error: Config file /etc/hysteria/config.json not found."
return 1
fi fi
}
update_port "$1"