From 3de65357d43c439f239f93b79b4ba0e9a656308e Mon Sep 17 00:00:00 2001 From: Haruue <i@haruue.moe> Date: Sat, 30 Mar 2024 22:31:27 +0800 Subject: [PATCH] chore(scripts): run apt update on apt based distro Running apt update to avoid "package not found" error on some pre-installed Ubuntu / Debian. I have tested that other supported Linux distributions do not need this. dnf/yum/zypper: update metadata regularly by default, and checked when installing any package pacman: run with -Sy so metadata is always updated cherry-picked from: apernet/tcp-brutal@efcc08b936dec95a7f4645bb82d501784b21b156 --- scripts/install_server.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install_server.sh b/scripts/install_server.sh index 3dae096..8e9b2af 100644 --- a/scripts/install_server.sh +++ b/scripts/install_server.sh @@ -236,6 +236,7 @@ detect_package_manager() { fi if has_command apt; then + apt update PACKAGE_MANAGEMENT_INSTALL='apt -y --no-install-recommends install' return 0 fi