From ba2400a9ddcf47f35328ec81f7f6a3b316ec68b3 Mon Sep 17 00:00:00 2001 From: Marcus Furlong Date: Sat, 25 Apr 2026 14:26:05 -0400 Subject: [PATCH] add ubuntu 26.04 resolute codename --- errata/sources/distros/ubuntu.py | 2 +- etc/patchman/local_settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/errata/sources/distros/ubuntu.py b/errata/sources/distros/ubuntu.py index ec6036fc..0ef25962 100644 --- a/errata/sources/distros/ubuntu.py +++ b/errata/sources/distros/ubuntu.py @@ -206,7 +206,7 @@ def get_accepted_ubuntu_codenames(): """ Get acceptable Ubuntu OS codenames Can be overridden by specifying UBUNTU_CODENAMES in settings """ - default_codenames = ['jammy', 'noble'] + default_codenames = ['jammy', 'noble', 'resolute'] accepted_codenames = get_setting_of_type( setting_name='UBUNTU_CODENAMES', setting_type=list, diff --git a/etc/patchman/local_settings.py b/etc/patchman/local_settings.py index 6705f44c..e622a02b 100644 --- a/etc/patchman/local_settings.py +++ b/etc/patchman/local_settings.py @@ -51,7 +51,7 @@ DEBIAN_CODENAMES = ['bookworm', 'trixie'] # list of Ubuntu Linux releases to update -UBUNTU_CODENAMES = ['jammy', 'noble'] +UBUNTU_CODENAMES = ['jammy', 'noble', 'resolute'] # Whether to run patchman under the gunicorn web server RUN_GUNICORN = False