mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-06-03 14:11:49 +00:00
Include -security and -updates packages in bootable buildd images
The base image is built with packages from the release pocket; however, we want the latest from updates and security. Those pockets are already enabled, we just need to perform an upgrade to pull in the latest packages.
This commit is contained in:
parent
8f76e539b1
commit
1aef616afd
@ -36,9 +36,16 @@ cleanup_linux_virtual() {
|
|||||||
}
|
}
|
||||||
trap cleanup_linux_virtual EXIT
|
trap cleanup_linux_virtual EXIT
|
||||||
|
|
||||||
# Install dependencies
|
# The base image is built with packages from the release pocket;
|
||||||
|
# however, we want the latest from updates and security. Those
|
||||||
|
# pockets are already enabled, we just need to perform an upgrade
|
||||||
|
# to pull in the latest packages.
|
||||||
env DEBIAN_FRONTEND=noninteractive chroot "$mount_d" apt-get \
|
env DEBIAN_FRONTEND=noninteractive chroot "$mount_d" apt-get \
|
||||||
update --assume-yes
|
update --assume-yes
|
||||||
|
env DEBIAN_FRONTEND=noninteractive chroot "$mount_d" apt-get \
|
||||||
|
dist-upgrade --assume-yes
|
||||||
|
|
||||||
|
# Install dependencies
|
||||||
env DEBIAN_FRONTEND=noninteractive chroot "$mount_d" apt-get \
|
env DEBIAN_FRONTEND=noninteractive chroot "$mount_d" apt-get \
|
||||||
install -y lsb-release locales initramfs-tools busybox-initramfs \
|
install -y lsb-release locales initramfs-tools busybox-initramfs \
|
||||||
udev dbus netplan.io cloud-init openssh-server sudo snapd
|
udev dbus netplan.io cloud-init openssh-server sudo snapd
|
||||||
|
Loading…
x
Reference in New Issue
Block a user