mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2025-02-16 12:34:32 +00:00
base_update_cli: handle updates-testing not existing on ELN
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
c146bf4384
commit
c956e41e50
@ -11,15 +11,20 @@ sub run {
|
|||||||
prepare_test_packages;
|
prepare_test_packages;
|
||||||
# check rpm agrees they installed good
|
# check rpm agrees they installed good
|
||||||
verify_installed_packages;
|
verify_installed_packages;
|
||||||
|
# we should disable the test repos now. also, on regular Fedora,
|
||||||
|
# disable updates-testing; on ELN it doesn't exist and trying to
|
||||||
|
# disable it causes an error
|
||||||
|
my $disable = '--disablerepo=openqa-testrepo*';
|
||||||
|
$disable .= ' --disablerepo=updates-testing' unless (get_var("VERSION") eq "ELN");
|
||||||
# update the fake acpica-tools (should come from the real repo)
|
# update the fake acpica-tools (should come from the real repo)
|
||||||
# this can take a long time if we get unlucky with the metadata refresh
|
# this can take a long time if we get unlucky with the metadata refresh
|
||||||
assert_script_run 'dnf -y --disablerepo=openqa-testrepo* --disablerepo=updates-testing update acpica-tools', 600;
|
assert_script_run "dnf -y $disable update acpica-tools", 600;
|
||||||
# check we got the updated version
|
# check we got the updated version
|
||||||
verify_updated_packages;
|
verify_updated_packages;
|
||||||
# now remove acpica-tools, and see if we can do a straight
|
# now remove acpica-tools, and see if we can do a straight
|
||||||
# install from the default repos
|
# install from the default repos
|
||||||
assert_script_run 'dnf -y remove acpica-tools';
|
assert_script_run 'dnf -y remove acpica-tools';
|
||||||
assert_script_run 'dnf -y --disablerepo=openqa-testrepo* --disablerepo=updates-testing install acpica-tools', 120;
|
assert_script_run "dnf -y $disable install acpica-tools", 120;
|
||||||
assert_script_run 'rpm -V acpica-tools';
|
assert_script_run 'rpm -V acpica-tools';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user