From 6103c75c947b7f4f31f457aef915d0ea73d46fd8 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Wed, 8 Sep 2021 00:29:25 +0200 Subject: [PATCH] Install dialog if needed --- buster | 2 ++ 1 file changed, 2 insertions(+) diff --git a/buster b/buster index f96e0f3..72dfb3d 100755 --- a/buster +++ b/buster @@ -261,6 +261,8 @@ 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 --allow-releaseinfo-change; apt install debconf; } + # also dialog ... https://github.com/YunoHost/doc/pull/1739 + dpkg --list | grep -q '^ii dialog ' || { apt update --allow-releaseinfo-change; apt install dialog; } apt_get_wrapper update --allow-releaseinfo-change \ || return 1