Imported 2.581

No reason for CPC update specified.
impish
CloudBuilder 6 years ago
parent 808562a25b
commit 85915d38af

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.581) eoan; urgency=medium
* Remove device nodes later for ubuntu-base:minimized (i.e. docker) builds.
(LP: #1828118)
-- Michael Hudson-Doyle <michael.hudson@ubuntu.com> Wed, 08 May 2019 09:59:35 +1200
livecd-rootfs (2.580) eoan; urgency=medium livecd-rootfs (2.580) eoan; urgency=medium
* Run clean_debian_chroot after minimize_manual (LP: #1826377) * Run clean_debian_chroot after minimize_manual (LP: #1826377)

@ -308,17 +308,6 @@ EOF
apt-get -y --purge autoremove" apt-get -y --purge autoremove"
fi fi
if [ "${PROJECT}:${SUBPROJECT:-}" = "ubuntu-base:minimized" ]; then
# Save even more size by removing apt lists (that are currently removed
# downstream anyway)
rm -rf chroot/var/lib/apt/lists/*
# Having device notes in the docker image can cause problems
# (https://github.com/tianon/docker-brew-ubuntu-core/issues/62)
# so remove them. We only do this for docker out of an
# abundance of caution.
rm -rf chroot/dev/*
fi
configure_universe configure_universe
if [ -d chroot/var/lib/preinstalled-pool ]; then if [ -d chroot/var/lib/preinstalled-pool ]; then

@ -717,7 +717,18 @@ subtract_package_lists() {
clean_debian_chroot() { clean_debian_chroot() {
# remove crufty files that shouldn't be left in an image # remove crufty files that shouldn't be left in an image
rm -f chroot/var/cache/debconf/*-old chroot/var/lib/dpkg/*-old rm -f chroot/var/cache/debconf/*-old chroot/var/lib/dpkg/*-old
Chroot chroot apt clean Chroot chroot apt clean
# For the docker images we remove even more stuff.
if [ "${PROJECT}:${SUBPROJECT:-}" = "ubuntu-base:minimized" ]; then
# Remove apt lists (that are currently removed downstream
# anyway)
rm -rf chroot/var/lib/apt/lists/*
# Having device nodes in the docker image can cause problems
# (https://github.com/tianon/docker-brew-ubuntu-core/issues/62)
# so remove them. We only do this for docker out of an
# abundance of caution.
rm -rf chroot/dev/*
fi
} }
configure_universe() { configure_universe() {

Loading…
Cancel
Save