From fa1102f084c478adb2f8400d83602d1aa8235466 Mon Sep 17 00:00:00 2001 From: Juan David Hurtado G Date: Sun, 27 Jul 2025 07:10:17 -0500 Subject: [PATCH] bootstrap: initial support for Ubuntu Noble jail --- usr/local/share/bastille/bootstrap.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/usr/local/share/bastille/bootstrap.sh b/usr/local/share/bastille/bootstrap.sh index a0e0339e..4e1c625e 100644 --- a/usr/local/share/bastille/bootstrap.sh +++ b/usr/local/share/bastille/bootstrap.sh @@ -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"