mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-15 15:18:26 +00:00
The LXD snap is no longer seeded in any images since Noble+ so the LXD related unminimize logic in ./live-build/auto/build?h=ubuntu/noble and ./live-build/ubuntu-server/hooks/01-unminimize.chroot_early is no longer required. lxd-installer can remain installed. (cherry picked from commit 46c19dfa913c133042d62e0caa2d2d526cd9bb7f)
19 lines
504 B
Bash
Executable File
19 lines
504 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
case ${PASS} in
|
|
ubuntu-server-minimal.ubuntu-server)
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
# Fix up missing recommends. Other non-layered flavors handle this in
|
|
# live-build/auto/build, but we need to do it here. Also, there are
|
|
# additional recommends missing from server-minimal that wouldn't be
|
|
# corrected by a fix to debootstrap to handle Recommends.
|
|
echo "Installing any missing recommends"
|
|
env DEBIAN_FRONTEND=noninteractive apt-get -y --fix-policy install
|