From 0a081c55af8dcc6b4b932fdd25107789acb036f4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 27 Jul 2021 03:07:52 +0200 Subject: Fixing full-upgrade option in container update command. Signed-off-by: Daniel Baumann --- libexec/container/update | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libexec/container/update b/libexec/container/update index bb175d1..41891fe 100755 --- a/libexec/container/update +++ b/libexec/container/update @@ -29,7 +29,7 @@ HOOKS="/etc/${SOFTWARE}/hooks" Parameters () { GETOPT_LONGOPTIONS="name:,full-upgrade,autoremove,purge,yes," - GETOPT_OPTIONS="n:,r,p,y," + GETOPT_OPTIONS="n:,f,r,p,y," PARAMETERS="$(getopt --longoptions ${GETOPT_LONGOPTIONS} --name=${COMMAND} --options ${GETOPT_OPTIONS} --shell sh -- ${@})" @@ -120,7 +120,7 @@ do case "${FULL_UPGRADE}" in true) - container run -n ${NAME} -- "apt update && ${YES} full-upgrade" + container run -n ${NAME} -- "apt update && apt ${YES} full-upgrade" ;; esac -- cgit v1.2.3