You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
752 B
30 lines
752 B
From 0251961929a45ccae1d635b7e85a9d8826baf72d Mon Sep 17 00:00:00 2001
|
|
From: Tomas Kopecek <tkopecek@redhat.com>
|
|
Date: Feb 07 2024 13:45:08 +0000
|
|
Subject: PR#3989: Oz: don't hardcode the image size unit as 'G'
|
|
|
|
|
|
Merges #3989
|
|
https://pagure.io/koji/pull-request/3989
|
|
|
|
Fixes: #3993
|
|
https://pagure.io/koji/issue/3993
|
|
Oz: don't hardcode the image size unit as 'G'
|
|
|
|
---
|
|
|
|
diff --git a/builder/kojid b/builder/kojid
|
|
index fe35e47..b4536dd 100755
|
|
--- a/builder/kojid
|
|
+++ b/builder/kojid
|
|
@@ -4101,7 +4101,7 @@ class OzImageTask(BaseTaskHandler):
|
|
template += """</os>
|
|
<description>%s OS</description>
|
|
<disk>
|
|
- <size>%sG</size>
|
|
+ <size>%s</size>
|
|
</disk>
|
|
</template>
|
|
""" % (name, self.opts.get('disk_size')) # noqa: E501
|
|
|