From fc5efafe18bae13ea8e8083d403b225b1b43834e Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 7 Dec 2021 11:19:48 -0800 Subject: [PATCH] mkksiso: Add missing implantisomd5 tool requirements Related: rhbz#2028104 --- src/sbin/mkksiso | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/sbin/mkksiso b/src/sbin/mkksiso index 85497ac2..ee0fa77b 100755 --- a/src/sbin/mkksiso +++ b/src/sbin/mkksiso @@ -182,7 +182,7 @@ class Mkisofs_aarch64(MakeISOTool): class Mkisofs_ppc(MakeISOTool): """Use the mkisofs tool to create the final iso (ppc)""" - tools = ["mkisofs"] + tools = ["mkisofs", "implantisomd5"] requirements = ["/usr/share/lorax/templates.d/99-generic/config_files/ppc/mapping"] arches = ["ppc"] @@ -203,7 +203,7 @@ class Mkisofs_ppc(MakeISOTool): class Mkisofs_ppc64le(MakeISOTool): """Use the mkisofs tool to create the final iso (ppc64le)""" - tools = ["mkisofs"] + tools = ["mkisofs", "implantisomd5"] requirements = ["/usr/share/lorax/templates.d/99-generic/config_files/ppc/mapping"] arches = ["ppc64le"] @@ -224,7 +224,7 @@ class Mkisofs_ppc64le(MakeISOTool): class Mkisofs_s390(MakeISOTool): """Use the mkisofs tool to create the final iso (s390)""" - tools = ["mkisofs"] + tools = ["mkisofs", "implantisomd5"] requirements = [] arches = ["s390", "s390x"] @@ -246,7 +246,7 @@ class Mkisofs_s390(MakeISOTool): class Mkisofs_x86_64(MakeISOTool): """Use the mkisofs tool to create the final iso (x86_64)""" - tools = ["mkisofs", "isohybrid"] + tools = ["mkisofs", "isohybrid", "implantisomd5"] requirements = [] arches = ["x86_64", "i386"]