52 lines
1.1 KiB
Bash
52 lines
1.1 KiB
Bash
#!/bin/bash
|
|
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH
|
|
|
|
source <(curl -f -s --connect-timeout 10 --retry 3 https://dl.acepanel.net/public.sh)
|
|
if [ $? -ne 0 ]; then
|
|
echo "Download public.sh failed, please check the network or try again later."
|
|
exit 1
|
|
fi
|
|
|
|
channel=${1}
|
|
version=${2}
|
|
gitea_path="${setup_path}/server/gitea"
|
|
|
|
# 架构判断
|
|
if [ ${ARCH} == "x86_64" ]; then
|
|
gitea_file="gitea-${version}-linux-amd64.7z"
|
|
elif [ ${ARCH} == "aarch64" ]; then
|
|
gitea_file="gitea-${version}-linux-arm64.7z"
|
|
else
|
|
error "Unsupported architecture"
|
|
fi
|
|
|
|
# 下载
|
|
cd ${gitea_path}
|
|
dl "${gitea_path}" "/gitea/${gitea_file}"
|
|
|
|
# 解压
|
|
cd ${gitea_path}
|
|
7z x ${gitea_file}
|
|
rm -f ${gitea_file}
|
|
|
|
# 替换文件
|
|
systemctl stop gitea
|
|
rm -f gitea
|
|
mv gitea-${version}-linux-* gitea
|
|
if [ ! -f "${gitea_path}/gitea" ]; then
|
|
error "Extraction failed"
|
|
fi
|
|
|
|
chown -R www:www ${gitea_path}/gitea
|
|
chmod -R 700 ${gitea_path}/gitea
|
|
systemctl start gitea
|
|
if [ "$?" != "0" ]; then
|
|
error "Failed to start"
|
|
fi
|
|
|
|
acepanel app write gitea ${channel} ${version}
|
|
|
|
echo -e $HR
|
|
echo "Upgrade successful"
|
|
echo -e $HR
|