Update pingpong.sh

This commit is contained in:
smeb y 2024-04-27 18:30:51 +08:00 committed by GitHub
parent 8d3961e4e6
commit 6a6de154ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,17 +40,26 @@ else
fi fi
#获取运行文件 #获取运行文件
read -p "请输入你的key device id:" your_device_id read -p "请输入你的key device id: " your_device_id
export keyid=$your_device_id
keyid="$your_device_id"
# 下载PINGPONG程序
wget -O PINGPONG https://pingpong-build.s3.ap-southeast-1.amazonaws.com/linux/latest/PINGPONG wget -O PINGPONG https://pingpong-build.s3.ap-southeast-1.amazonaws.com/linux/latest/PINGPONG
screen -dmS pingpong bash -c "chmod +x ./PINGPONG && ./PINGPONG --key $keyid"
if [ -f "./PINGPONG" ]; then
chmod +x ./PINGPONG
screen -dmS pingpong bash -c "./PINGPONG --key \"$keyid\""
else
echo "下载PINGPONG失败请检查网络连接或URL是否正确。"
fi
echo "节点已经启动请使用screen -r pingpong 查看日志或使用脚本功能2" echo "节点已经启动请使用screen -r pingpong 查看日志或使用脚本功能2"
} }
function check_service_status() { function check_service_status() {
docker logs -f --tail 20 pingpong screen -r pingpong
} }