summaryrefslogtreecommitdiff
path: root/buildscripts/packager_enterprise.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/packager_enterprise.py')
-rwxr-xr-xbuildscripts/packager_enterprise.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/buildscripts/packager_enterprise.py b/buildscripts/packager_enterprise.py
index ea89dc94633..5711d452655 100755
--- a/buildscripts/packager_enterprise.py
+++ b/buildscripts/packager_enterprise.py
@@ -44,7 +44,7 @@ import packager # pylint: disable=wrong-import-position
ARCH_CHOICES = ["x86_64", "ppc64le", "s390x", "arm64", "aarch64"]
# Made up names for the flavors of distribution we package for.
-DISTROS = ["suse", "debian", "redhat", "ubuntu", "amazon", "amazon2", "amazon2022"]
+DISTROS = ["suse", "debian", "redhat", "ubuntu", "amazon", "amazon2", "amazon2023"]
class EnterpriseSpec(packager.Spec):
@@ -144,8 +144,8 @@ class EnterpriseDistro(packager.Distro):
return ["rhel82", "rhel90"]
if self.dname == 'amazon2':
return ["amazon2"]
- if self.dname == 'amazon2022':
- return ["amazon2022"]
+ if self.dname == 'amazon2023':
+ return ["amazon2023"]
return []
if re.search("(redhat|fedora|centos)", self.dname):