diff options
-rw-r--r-- | CHANGELOG.txt | 8 | ||||
-rw-r--r-- | VERSION.txt | 2 | ||||
-rwxr-xr-x | libexec/container/update | 4 |
3 files changed, 11 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 34f4308..213e516 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,11 @@ +2021-11-17 Daniel Baumann <daniel.baumann@open-infrastructure.net> + + * Releasing version 20211117. + + [ Daniel Baumann ] + * Adding complete debconf envars in container update command. + * Passing fix-missing to apt upgrade in container update command. + 2021-11-16 Daniel Baumann <daniel.baumann@open-infrastructure.net> * Releasing version 20211116. diff --git a/VERSION.txt b/VERSION.txt index 7090fb4..530e4a5 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -20211116 +20211117 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 |