Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion errata/sources/distros/debian.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def get_accepted_debian_codenames():
""" Get acceptable Debian OS codenames
Can be overridden by specifying DEBIAN_CODENAMES in settings
"""
default_codenames = ['bookworm', 'bullseye']
default_codenames = ['bookworm', 'trixie']
accepted_codenames = get_setting_of_type(
setting_name='DEBIAN_CODENAMES',
setting_type=list,
Expand Down
2 changes: 1 addition & 1 deletion errata/sources/distros/ubuntu.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def get_accepted_ubuntu_codenames():
""" Get acceptable Ubuntu OS codenames
Can be overridden by specifying UBUNTU_CODENAMES in settings
"""
default_codenames = ['focal', 'jammy', 'noble']
default_codenames = ['jammy', 'noble']
accepted_codenames = get_setting_of_type(
setting_name='UBUNTU_CODENAMES',
setting_type=list,
Expand Down
12 changes: 12 additions & 0 deletions etc/patchman/local_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,18 @@
# Number of days to wait before raising that a host has not reported
DAYS_WITHOUT_REPORT = 14

# list of errata sources to update, remove unwanted ones to improve performance
ERRATA_OS_UPDATES = ['yum', 'rocky', 'alma', 'arch', 'ubuntu', 'debian']

# list of Alma Linux releases to update
ALMA_RELEASES = [8, 9, 10]

# list of Debian Linux releases to update
DEBIAN_CODENAMES = ['bookworm', 'trixie']

# list of Ubuntu Linux releases to update
UBUNTU_CODENAMES = ['jammy', 'noble']

# Whether to run patchman under the gunicorn web server
RUN_GUNICORN = False

Expand Down
Loading