From 2f64d6ff2a9dc21726ea19cc90b193cf31a55e60 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Sun, 27 Jun 2021 14:57:58 +0200 Subject: [PATCH] Make sure debconf is installed --- install_yunohost | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install_yunohost b/install_yunohost index d6c791c..a5b1c42 100755 --- a/install_yunohost +++ b/install_yunohost @@ -258,6 +258,10 @@ function check_assertions() function upgrade_system() { + # Some VPS don't have debconf install, therefore don't have debconf-apt-progress... + # c.f. https://github.com/YunoHost/issues/issues/1828 + dpkg --list | grep -q '^ii debconf ' || { apt update; apt install debconf; } + apt_get_wrapper update \ || return 1