From ea43b826b55ff2a3d86462eaca1f9a42fbb486cb Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 25 Jan 2024 16:26:10 -0800 Subject: [PATCH] Oz: don't hardcode the image size unit as 'G' This has never been necessary, because oz has always treated a size with no unit as being in gibibytes. After https://github.com/clalancette/oz/pull/310 it will be actively harmful, because it will prevent us from using that new ability of oz to specify a size using any other unit, as we have a specific reason to want: https://bugzilla.redhat.com/show_bug.cgi?id=2247611 Signed-off-by: Adam Williamson --- builder/kojid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/kojid b/builder/kojid index fe35e4739..b4536dd27 100755 --- a/builder/kojid +++ b/builder/kojid @@ -4101,7 +4101,7 @@ class OzImageTask(BaseTaskHandler): template += """ %s OS - %sG + %s """ % (name, self.opts.get('disk_size')) # noqa: E501