Introduce unminimize as a package in OCI images (LP: #2078583)

With having unminimize split out from livecd-rootfs, we should
re-introduce it as a package for, at least, Noble so that it's
not seen as a regression. From 24.10 and onward, we're going to
drop it altogether.
ubuntu/noble
Utkarsh Gupta 2 months ago
parent 9a970b2ca2
commit 6047e22319

@ -1082,10 +1082,21 @@ case $PROJECT in
esac
;;
ubuntu-base|ubuntu-oci)
ubuntu-base)
OPTS="${OPTS:+$OPTS }--bootstrap-flavour=minimal"
;;
ubuntu-oci)
OPTS="${OPTS:+$OPTS }--bootstrap-flavour=minimal"
if [ "${SUBPROJECT:-}" = minimized ]; then
# As unminimize has been spit out from livecd-rootfs into a new
# separate pacakge, users have been reporting this as a regression for
# Noble. So we'd like to add the unminimize package; cf: LP: #2078583.
APT_OPTIONS="${APT_OPTIONS:+$APT_OPTIONS }--no-install-recommends"
add_package install unminimize
fi
;;
ubuntu-wsl)
add_task install minimal ubuntu-wsl
OPTS="${OPTS:+$OPTS }--linux-packages=none --initramfs=none"

Loading…
Cancel
Save