Skip to content

Commit

Permalink
TUN-8842: Add Ubuntu Noble and 'any' debian distributions to release …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
jcsf committed Jan 6, 2025
1 parent 2714d10 commit 5cfe9be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release_pkgs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down

0 comments on commit 5cfe9be

Please sign in to comment.