From fdec5d69bc6c9bd7eb6faaea1fccb5db9d133efe Mon Sep 17 00:00:00 2001 From: timoxa0 Date: Sun, 3 Nov 2024 13:11:41 +0500 Subject: [PATCH] common_deb: --no-install-recommends --- common.d/common.deb.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.d/common.deb.sh b/common.d/common.deb.sh index b647577..3348929 100644 --- a/common.d/common.deb.sh +++ b/common.d/common.deb.sh @@ -109,7 +109,7 @@ install_packages() return 2 } - chroot "$rootdir" apt install $packages -y || { + chroot "$rootdir" apt install --no-install-recommends $packages -y || { log "Failed to install package(s)" ierror return 1 }