diff --git a/subiquity/client/controllers/ubuntu_pro.py b/subiquity/client/controllers/ubuntu_pro.py index 7332072a..e11c363b 100644 --- a/subiquity/client/controllers/ubuntu_pro.py +++ b/subiquity/client/controllers/ubuntu_pro.py @@ -50,9 +50,7 @@ class UbuntuProController(SubiquityTuiController): dry_run: bool = self.app.opts.dry_run lsb = lsb_release(dry_run=dry_run) - # TODO Remove explicit check for jammy when 22.04 gets marked as a LTS - # version instead of a "(development branch)". - if "LTS" not in lsb["description"] and lsb["codename"] != "jammy": + if "LTS" not in lsb["description"]: await self.endpoint.skip.POST() raise Skip("Not running LTS version")