Merge pull request #1202 from BastilleBSD/ubuntu-noble

bootstrap: initial support for Ubuntu Noble jail
This commit is contained in:
Juan David Hurtado G
2025-07-27 07:10:42 -05:00
committed by GitHub

View File

@@ -388,7 +388,7 @@ debootstrap_release() {
fi
case "${LINUX_FLAVOR}" in
bionic|focal|jammy|buster|bullseye|bookworm)
bionic|focal|jammy|buster|bullseye|bookworm|noble)
info "Increasing APT::Cache-Start"
echo "APT::Cache-Start 251658240;" > "${bastille_releasesdir}"/${DIR_BOOTSTRAP}/etc/apt/apt.conf.d/00aptitude
;;
@@ -638,6 +638,13 @@ case "${1}" in
ARCH_BOOTSTRAP=${HW_MACHINE_ARCH_LINUX}
debootstrap_release
;;
ubuntu_noble|noble|ubuntu-noble)
PLATFORM_OS="Ubuntu/Linux"
LINUX_FLAVOR="noble"
DIR_BOOTSTRAP="Ubuntu_2404"
ARCH_BOOTSTRAP=${HW_MACHINE_ARCH_LINUX}
debootstrap_release
;;
debian_buster|buster|debian-buster)
PLATFORM_OS="Debian/Linux"
LINUX_FLAVOR="buster"