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.
This commit is contained in:
João "Pisco" Fernandes 2025-01-06 12:09:13 +00:00
parent 2714d10d62
commit 5cfe9bef79
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ def parse_args():
) )
parser.add_argument( 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"], "xenial", "trusty"],
help="list of debian based releases that need to be packaged for" help="list of debian based releases that need to be packaged for"
) )