mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-12-19 23:25:58 +00:00
_installer_build: skip hfsplus-tools on ELN
It's not reliably in ELN (it's sometimes in the buildroot repo but we shouldn't rely on that). We already pass --nomacboot to the actual build command on ELN, so this should be OK. Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
656f44641c
commit
13811e106c
@ -16,7 +16,7 @@ sub run {
|
||||
my $arch = get_var("ARCH");
|
||||
# python3-dnf is for updvercheck.py
|
||||
my $packages = "python3-dnf lorax";
|
||||
$packages .= " hfsplus-tools" if ($arch eq "ppc64le" || $arch eq "aarch64");
|
||||
$packages .= " hfsplus-tools" if (($arch eq "ppc64le" || $arch eq "aarch64") && lc($version) ne "eln");
|
||||
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...
|
||||
|
||||
Loading…
Reference in New Issue
Block a user