diff options
author | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-11-16 06:29:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@open-infrastructure.net> | 2021-11-16 06:29:03 +0000 |
commit | 47ab1330ec176969966a029655fd99cf53f3f891 (patch) | |
tree | 19c5547fda10e39770869987377217869af35e93 /libexec | |
parent | Adding complete debconf envars in container update command. (diff) | |
download | compute-tools-47ab1330ec176969966a029655fd99cf53f3f891.tar.xz compute-tools-47ab1330ec176969966a029655fd99cf53f3f891.zip |
Passing fix-missing to apt upgrade in container update command.
Signed-off-by: Daniel Baumann <daniel.baumann@open-infrastructure.net>
Diffstat (limited to '')
-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 c05a20b..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' DEBCONF_NONINTERACTIVE_SEEN='true' DEBCONF_NOWARNINGS='true' 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' DEBCONF_NONINTERACTIVE_SEEN='true' DEBCONF_NOWARNINGS='true' 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 |