1
0
mirror of https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git synced 2025-12-08 18:05:59 +00:00
os-autoinst-distri-fedora/tests/_postinstall_usb.pm
2025-10-31 14:05:51 +01:00

23 lines
319 B
Perl

use base "installedtest";
use strict;
use testapi;
use anaconda;
use utils;
sub run {
my $self = shift;
my $desktop = get_var("DESKTOP");
if ($desktop eq "gnome") {
set_var("INSTALL_NO_USER", "1", reload_needles => 1);
}
}
sub test_flags {
return {fatal => 1};
}
1;
# vim: set sw=4 et: