mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-02-16 12:34:32 +00:00
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 <awilliam@redhat.com>
This commit is contained in:
parent
45c1dd465f
commit
deb25acdf9
@ -13,7 +13,9 @@ sub run {
|
|||||||
my $arch = get_var("ARCH");
|
my $arch = get_var("ARCH");
|
||||||
# we need the update repo mounted to use it in image creation
|
# we need the update repo mounted to use it in image creation
|
||||||
mount_update_image;
|
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
|
# this 'temporary file cleanup' thing can actually wipe bits of
|
||||||
# the lorax install root while lorax is still running...
|
# the lorax install root while lorax is still running...
|
||||||
assert_script_run "systemctl stop systemd-tmpfiles-clean.timer";
|
assert_script_run "systemctl stop systemd-tmpfiles-clean.timer";
|
||||||
|
Loading…
Reference in New Issue
Block a user