From 5cfe9bef792551ca698efc750e5f512ef92df6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20=22Pisco=22=20Fernandes?= Date: Mon, 6 Jan 2025 12:09:13 +0000 Subject: [PATCH] TUN-8842: Add Ubuntu Noble and 'any' debian distributions to release script ## Summary Ubuntu has released a new LTS version, and there are people starting to use it, this makes our installation recommendation, that automatically detecs the release flavor, to fail for Noble users. Therefore, this commit adds this new version to our release packages. It also adds an `any` package so that we can update our documentation to use it since we are using the same binaries across all debian flavors, so there is no reason to keep adding more release flavors when we can just take advantage of the `any` release flavor like other repositories do. --- release_pkgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release_pkgs.py b/release_pkgs.py index 8d1f5c6e..92d38195 100644 --- a/release_pkgs.py +++ b/release_pkgs.py @@ -346,7 +346,7 @@ def parse_args(): ) parser.add_argument( - "--deb-based-releases", default=["bookworm", "bullseye", "buster", "jammy", "impish", "focal", "bionic", + "--deb-based-releases", default=["any", "bookworm", "bullseye", "buster", "noble", "jammy", "impish", "focal", "bionic", "xenial", "trusty"], help="list of debian based releases that need to be packaged for" )