增加安装成功率

许多vps预装的系统长时间不更新,debian基直接安装依赖会失败(比如阿里云ecs ubuntu 20.04)
pull/133/head
kirin10000 2020-09-24 19:20:33 +08:00 committed by GitHub
parent b990f89b6e
commit 9b88c98a53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -175,7 +175,15 @@ install_software() {
command -v "$COMPONENT" > /dev/null 2>&1 && return
if ${PACKAGE_MANAGEMENT_INSTALL} "$COMPONENT"; then
echo "info: $COMPONENT is installed."
else
elif [ ${PACKAGE_MANAGEMENT_INSTALL} == 'apt install' ]; then
apt update
if ${PACKAGE_MANAGEMENT_INSTALL} "$COMPONENT"; then
echo "info: $COMPONENT is installed."
else
echo "error: Installation of $COMPONENT failed, please check your network."
exit 1
fi
else
echo "error: Installation of $COMPONENT failed, please check your network."
exit 1
fi