summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-17 02:12:34 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-11-17 02:12:34 +0000
commit55360cc5debc1a6c98f9e2ec8ffd0fc1e4f6a69a (patch)
tree2cb6c7ffa8536c0466927fe048ed9baa6c4fc092 /libexec
parentReleasing debian version 20211116-1. (diff)
downloadopen-infrastructure-compute-tools-55360cc5debc1a6c98f9e2ec8ffd0fc1e4f6a69a.tar.xz
open-infrastructure-compute-tools-55360cc5debc1a6c98f9e2ec8ffd0fc1e4f6a69a.zip
Merging upstream version 20211117.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libexec')
-rwxr-xr-xlibexec/container/update4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/container/update b/libexec/container/update
index de76942..adfee65 100755
--- a/libexec/container/update
+++ b/libexec/container/update
@@ -173,11 +173,11 @@ do
case "${FULL_UPGRADE}" in
true)
- container run -n ${NAME} -- "DEBCONF_FRONTEND='noninteractive' DEBCONF_PRIORITY='critical' apt \-o Dpkg::Options::=\-\-force-confold ${YES} full-upgrade"
+ container run -n ${NAME} -- "DEBCONF_FRONTEND='noninteractive' DEBCONF_PRIORITY='critical' DEBCONF_NONINTERACTIVE_SEEN='true' DEBCONF_NOWARNINGS='true' apt \-o Dpkg::Options::=\-\-force-confold -f ${YES} full-upgrade"
;;
*)
- container run -n ${NAME} -- "DEBCONF_FRONTEND='noninteractive' DEBCONF_PRIORITY='critical' apt \-o Dpkg::Options::=\-\-force-confold ${YES} upgrade"
+ container run -n ${NAME} -- "DEBCONF_FRONTEND='noninteractive' DEBCONF_PRIORITY='critical' DEBCONF_NONINTERACTIVE_SEEN='true' DEBCONF_NOWARNINGS='true' apt \-o Dpkg::Options::=\-\-force-confold -f ${YES} upgrade"
;;
esac