1Panel/ci/script.sh
wanghe-fit2cloud 10a7fb3be2
Some checks failed
SonarCloud Scan / SonarCloud (push) Failing after -6s
feat: Update the official website URL for the international version
2025-02-18 10:31:38 +08:00

30 lines
674 B
Bash
Executable file

#!/bin/bash
command -v wget >/dev/null || {
echo "wget not found, please install it and try again ."
exit 1
}
if [ ! -f "1pctl" ]; then
wget https://github.com/1Panel-dev/installer/raw/main/1pctl
fi
if [ ! -f "1panel.service" ]; then
wget https://github.com/1Panel-dev/installer/raw/main/1panel.service
fi
if [ ! -f "install.sh" ]; then
wget https://github.com/1Panel-dev/installer/raw/main/install.sh
fi
if [ ! -f "GeoIP.mmdb" ]; then
wget https://resource.1panel.pro/geo/GeoIP.mmdb
fi
if [ ! -f "lang.tar.gz" ]; then
wget https://resource.1panel.pro/language/lang.tar.gz
tar zxvf lang.tar.gz
rm -rf lang.tar.gz
fi
chmod 755 1pctl install.sh