From deb25acdf9e12e6d31cee1136c9a1e658b43a63b Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Sep 06 2023 23:43:36 +0000 Subject: 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 --- diff --git a/tests/_installer_build.pm b/tests/_installer_build.pm index 427055a..109bd19 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";