From 84875885b9740261a31bb2df794c9bf2f52e27f5 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 19 Jan 2022 22:24:00 +0100 Subject: [PATCH] Explicitly install php7.4-fpm, mariadb-server and metronome on bullseye so they get flagged as manually installed --- bullseye | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/bullseye b/bullseye index 86245b4..48be868 100755 --- a/bullseye +++ b/bullseye @@ -507,12 +507,19 @@ function install_yunohost_packages() { debhelper dh-autoreconf \ || true + # Explicitly install these so they get flagged as manually installed + # At some point we may want to start trying to not install these by default + # To have lighter systems + # But that assumes that app explicitly declare their dependencies + recommend_packages="php7.4-fpm mariadb-server metronome" + # Install YunoHost apt_get_wrapper \ -o Dpkg::Options::="--force-confold" \ -o APT::install-recommends=true \ -y install \ yunohost yunohost-admin postfix \ + $recommend_packages \ || return 1 }