From f421dfa54999e0fab2abfd245543b6d542e977ae Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Sun, 21 Feb 2021 17:32:17 +0500 Subject: [PATCH] update dovecot to focal on ubuntu 20 --- plogical/upgrade.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plogical/upgrade.py b/plogical/upgrade.py index a3cd78ecc..c53464ee9 100755 --- a/plogical/upgrade.py +++ b/plogical/upgrade.py @@ -2175,7 +2175,7 @@ echo $oConfig->Save() ? 'Done' : 'Error'; command = 'apt --fix-broken install -y' subprocess.call(command, shell=True) - command = 'apt -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade -y' + command = 'DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade -y' subprocess.call(command, shell=True)