diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-11-15 21:40:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-11-15 21:40:36 +0000 |
commit | 56bfff057c559e5a9021a5973fde3c66c5f69d6e (patch) | |
tree | 7095add54f5f9a8ff3336fe15d69fbab1a918a00 | |
parent | Adding upstream version 20211113. (diff) | |
download | open-infrastructure-compute-tools-56bfff057c559e5a9021a5973fde3c66c5f69d6e.tar.xz open-infrastructure-compute-tools-56bfff057c559e5a9021a5973fde3c66c5f69d6e.zip |
Adding upstream version 20211115.upstream/20211115
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | CHANGELOG.txt | 9 | ||||
-rw-r--r-- | VERSION.txt | 2 | ||||
-rwxr-xr-x | libexec/container/update | 55 |
3 files changed, 61 insertions, 5 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index dbce2b3..cdef7dd 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,12 @@ +2021-11-15 Daniel Baumann <daniel.baumann@open-infrastructure.net> + + * Releasing version 20211115. + + [ Daniel Baumann ] + * Speeding up full-upgrades in container update command by removing redundant upgrade step. + * Preparing update notifications handling in container update command. + * Adding notification handling in container update command. + 2021-11-13 Daniel Baumann <daniel.baumann@open-infrastructure.net> * Releasing version 20211113. diff --git a/VERSION.txt b/VERSION.txt index f048496..4dc8ff2 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -20211113 +20211115 diff --git a/libexec/container/update b/libexec/container/update index 4c23423..80f154a 100755 --- a/libexec/container/update +++ b/libexec/container/update @@ -119,14 +119,61 @@ do echo "Updating ${NAME}" echo "################################################################################" - container run -n ${NAME} -- "apt update && apt ${YES} upgrade" + container run -n ${NAME} -- "apt update" - case "${FULL_UPGRADE}" in - true) - container run -n ${NAME} -- "apt update && apt ${YES} full-upgrade" + UPDATES="$(container run -n ${NAME} -- "apt \-\-simulate full-upgrade" | awk '/^[0-9]* upgraded, / { print $1 }')" + + case "${UPDATES}" in + 0) + ;; + + *) + PACKAGES="$(for PACKAGE in $(container run -n ${NAME} -- "apt list \-\-upgradable 2>/dev/null | grep '\/'" | awk -F/ '{ print $1 }'); do echo -n "${PACKAGE} "; done | sed -e 's| $||'; echo)" + + case "${FULL_UPGRADE}" in + true) + container run -n ${NAME} -- "apt ${YES} full-upgrade" + ;; + + *) + container run -n ${NAME} -- "apt ${YES} upgrade" + ;; + esac ;; esac + # Notification + if [ -n "${PACKAGES}" ] + then + CONTAINER_USER="${SUDO_USER:-${USER}}" + + DATE="$(date +%Y-%m-%d\ %H:%M:%S)" + HOST="$(hostname -f 2> /dev/null || hostname)" + + # logfile + echo "${DATE} ${HOST} ${CONTAINER_USER} ${NAME} ${UPDATES} upgraded: ${PACKAGES}" >> "/var/log/${SOFTWARE}/${PROGRAM}.log" + + # irc + if [ -e /usr/bin/irk ] + then + for FILE in "/etc/${SOFTWARE}/${PROGRAM}.conf" "/etc/${SOFTWARE}/${PROGRAM}.conf.d"/*.conf + do + if [ -e "${FILE}" ] + then + . "${FILE}" + fi + done + + if [ -n "${IRK_TARGETS}" ] + then + for TARGET in ${IRK_TARGETS} + do + irk "${TARGET}" "\x0300${CONTAINER_USER}\x03@\x0312${HOST}:\x03 \x0303${NAME}\x03 \x0307${UPDATES} upgraded\x03: ${PACKAGES}" + done + fi + fi + fi + case "${AUTOREMOVE}" in true) container run -n ${NAME} -- "apt ${YES} autoremove ${PURGE}" |