From deb25acdf9e12e6d31cee1136c9a1e658b43a63b Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Wed, 6 Sep 2023 16:43:36 -0700 Subject: [PATCH] installer_build: install hfsplus-tools on ppc64le We need this on ppc64le. Never tried running this test on it before. Signed-off-by: Adam Williamson --- tests/_installer_build.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/_installer_build.pm b/tests/_installer_build.pm index 427055ad..109bd196 100644 --- a/tests/_installer_build.pm +++ b/tests/_installer_build.pm @@ -13,7 +13,9 @@ sub run { my $arch = get_var("ARCH"); # we need the update repo mounted to use it in image creation mount_update_image; - assert_script_run "dnf -y install lorax", 90; + my $packages = "lorax"; + $packages .= " hfsplus-tools" if ($arch eq "ppc64le"); + assert_script_run "dnf -y install $packages", 120; # this 'temporary file cleanup' thing can actually wipe bits of # the lorax install root while lorax is still running... assert_script_run "systemctl stop systemd-tmpfiles-clean.timer";