mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-09 09:04:20 +00:00
23 lines
421 B
Perl
23 lines
421 B
Perl
|
use base "installedtest";
|
||
|
use strict;
|
||
|
use testapi;
|
||
|
use utils;
|
||
|
|
||
|
sub run {
|
||
|
my $self = shift;
|
||
|
# do the 'repo setup' steps, which set up a repo containing the
|
||
|
# update packages and run 'dnf update'
|
||
|
$self->root_console(tty=>3);
|
||
|
repo_setup;
|
||
|
# reboot, in case any of the updates need a reboot to apply
|
||
|
script_run "reboot", 0;
|
||
|
}
|
||
|
|
||
|
sub test_flags {
|
||
|
return { fatal => 1 };
|
||
|
}
|
||
|
|
||
|
1;
|
||
|
|
||
|
# vim: set sw=4 et:
|