From 7424d4e72165b29e25c1873c06a9b45509f68039 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Mon, 26 Aug 2024 14:42:05 -0400 Subject: [PATCH] install: Do not pull in "recommended" packages. This likely has no effect in this instance, but is good practice. --- scripts/lib/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/install b/scripts/lib/install index 7f2f17bb70..4413e1f5f7 100755 --- a/scripts/lib/install +++ b/scripts/lib/install @@ -375,7 +375,7 @@ if [ "$package_system" = apt ]; then # Note that any additions to these lists must also be added to # `zulip::profile::base` such that the new dependency is seen by # upgrades, as well as new installs. - if ! apt-get install -y \ + if ! apt-get install -y --no-install-recommends \ python3 python3-yaml puppet git curl jq crudini \ "${ADDITIONAL_PACKAGES[@]}"; then set +x