From ec87f5d80af8acda4603015e8d4d06c5cccbd8ff Mon Sep 17 00:00:00 2001 From: joy Date: Fri, 31 Oct 2025 09:20:04 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20scripts/containerd.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 123 --- scripts/containerd.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/containerd.sh b/scripts/containerd.sh index a42a8d9..bdcf0d9 100644 --- a/scripts/containerd.sh +++ b/scripts/containerd.sh @@ -89,8 +89,9 @@ pre_check() { for tool in "${required_tools[@]}"; do if ! command -v "$tool" &> /dev/null; then log "INFO" "安装缺失工具:$tool" - apt-get update -qq >/dev/null - apt-get install -qq -y "$tool" >/dev/null + apt-get update + #apt-get install -qq -y "$tool" >/dev/null + apt-get install -y "$tool" fi done log "INFO" "前置检查通过"