Use Server not Everything variant for http repos on modular
Modular Server composes don't contain an Everything variant, so we can't use it for the installation repo.
This commit is contained in:
parent
833502c880
commit
5e628551d8
@ -237,7 +237,11 @@ sub get_full_repo {
|
||||
# repo URL with flavor and arch, leave NFS ones alone (as for
|
||||
# NFS tests we just use a mounted ISO and the URL is complete)
|
||||
if ($repourl !~ m/^nfs/) {
|
||||
$repourl .= "/Everything/".get_var("ARCH")."/os";
|
||||
# Everything variant doesn't exist for modular composes atm,
|
||||
# only Server
|
||||
my $variant = 'Everything';
|
||||
$variant = 'Server' if (get_var("MODULAR"));
|
||||
$repourl .= "/${variant}/".get_var("ARCH")."/os";
|
||||
}
|
||||
return $repourl;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user