From e6cebf090e3279a1552a5a4444f2c20c765aaa13 Mon Sep 17 00:00:00 2001 From: Fabian Vogt Date: Mon, 12 Feb 2024 10:19:20 +0100 Subject: [PATCH] ttm: Remove livecd size checks live-kiwi-hook and openQA already do that, let's not triplicate the check. --- ttm/releaser.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ttm/releaser.py b/ttm/releaser.py index 01863356e..8843bf5c4 100644 --- a/ttm/releaser.py +++ b/ttm/releaser.py @@ -88,12 +88,6 @@ def maxsize_for_package(self, package, arch): if re.match(r'.*-dvd5-.*', package): return 4700372992 # a DVD needs to match - if re.match(r'livecd-x11-.*', package) and arch == 'x86_64': - return 681574400 # not a full CD on x86 - - if re.match(r'livecd-.*', package): - return 999999999 # a GB stick - if re.match(r'.*-(dvd9-dvd|cd-DVD)-.*', package): return 8539996159