[todo] StarServer需要直接提供安装dotnet运行时和星尘代理的url,方便局域网内部的运维使用
智能大石头
authored at
2024-12-31 15:22:36
Stardust
#!/bin/bash
if [ ! -d "/usr/lib/dotnet/" ] && [ ! -d "/usr/share/dotnet/" ]; then
curl http://x.newlifex.com/dotnet/net8.sh | bash
fi
gzfile="staragent80.tar.gz"
if [ ! -f "$gzfile" ]; then
wget "http://x.newlifex.com/star/"$gzfile
fi
if [ ! -d "agent/" ]; then
mkdir agent
fi
tar -xzf $gzfile -C agent
cd agent
dotnet StarAgent.dll -uninstall
dotnet StarAgent.dll -install -server http://s.newlifex.com:6600
cd ..
rm $gzfile -f
rm star.sh -f
|