diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-11-17 02:12:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-11-17 02:12:31 +0000 |
commit | aa97e2afb2821fcc247c9448e4663734b13a4520 (patch) | |
tree | bca9a15ce0cc4f5300da30a70f6cb187aa0df867 /libexec/container | |
parent | Adding upstream version 20211116. (diff) | |
download | open-infrastructure-compute-tools-aa97e2afb2821fcc247c9448e4663734b13a4520.tar.xz open-infrastructure-compute-tools-aa97e2afb2821fcc247c9448e4663734b13a4520.zip |
Adding upstream version 20211117.upstream/20211117
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libexec/container')
-rwxr-xr-x | libexec/container/update | 4 |
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 |