diff options
Diffstat (limited to 'libexec')
-rwxr-xr-x | libexec/container/update | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libexec/container/update b/libexec/container/update index 4c23423..729baff 100755 --- a/libexec/container/update +++ b/libexec/container/update @@ -119,12 +119,14 @@ do echo "Updating ${NAME}" echo "################################################################################" - container run -n ${NAME} -- "apt update && apt ${YES} upgrade" - case "${FULL_UPGRADE}" in true) container run -n ${NAME} -- "apt update && apt ${YES} full-upgrade" ;; + + *) + container run -n ${NAME} -- "apt update && apt ${YES} upgrade" + ;; esac case "${AUTOREMOVE}" in |